From 1fe3523aca34266b09cd0b93e0a77ef9ca8a0180 Mon Sep 17 00:00:00 2001 From: Dmitry Safonov Date: Tue, 7 Mar 2017 15:55:10 +0300 Subject: [PATCH] images: add proto2 syntax specification to remote-image.proto To suppress protobuf's warning: > [libprotobuf WARNING google/protobuf/compiler/parser.cc:546] > No syntax specified for the proto file: remote-image.proto. > Please use 'syntax = "proto2";' or 'syntax = "proto3";' > to specify a syntax version. (Defaulted to proto2 syntax.) Signed-off-by: Dmitry Safonov Signed-off-by: Andrei Vagin --- images/remote-image.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/remote-image.proto b/images/remote-image.proto index 1212627e3..f6b81503a 100644 --- a/images/remote-image.proto +++ b/images/remote-image.proto @@ -1,3 +1,5 @@ +syntax = "proto2"; + message local_image_entry { required string name = 1; required string snapshot_id = 2;