Skip to content
Snippets Groups Projects
Commit 7d89b0fc authored by Steven Murray's avatar Steven Murray
Browse files

Added an implicit default value of NONE to eos:wfe::Wrapper::type

parent 07f1082d
No related branches found
No related tags found
No related merge requests found
......@@ -108,8 +108,8 @@ message Error {
// contents. The type field of this wrapper message provides the required
// metadata.
message Wrapper {
enum Type {NOTIFICATION = 0; XATTR = 1; TAPEREPLICA = 2;}
Type type = 1;
enum Type {NONE = 0; NOTIFICATION = 1; XATTR = 2; TAPEREPLICA = 3;}
Type type = 1; //< Default value is NONE
Error error = 2;
Notification notification = 3;
Xattr xattr = 4;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment