diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-09-30 15:28:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:39:15 -0500 |
commit | 7368af9e7466494e4a69584634b48cbac937d1db (patch) | |
tree | d7fb7dfd6e3bb34f7b8c02514d964abc7f61d661 | |
parent | cc8af00a93aa16c61a3446c76caf0d2b174b3017 (diff) | |
download | samba-7368af9e7466494e4a69584634b48cbac937d1db.tar.gz samba-7368af9e7466494e4a69584634b48cbac937d1db.tar.bz2 samba-7368af9e7466494e4a69584634b48cbac937d1db.zip |
r10653: give unknown levels a name basicly the *2 levels mean
that the update or inform should be propagaded to all servers
metze
(This used to be commit 33c7c101c024818694830ac11fefe70bd2edb1d4)
-rw-r--r-- | source4/librpc/idl/winsrepl.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/idl/winsrepl.idl b/source4/librpc/idl/winsrepl.idl index 4d4d9c912e..08b7fb72d8 100644 --- a/source4/librpc/idl/winsrepl.idl +++ b/source4/librpc/idl/winsrepl.idl @@ -107,9 +107,9 @@ interface wrepl WREPL_REPL_SEND_REQUEST = 2, WREPL_REPL_SEND_REPLY = 3, WREPL_REPL_UPDATE = 4, - WREPL_REPL_5 = 5, + WREPL_REPL_UPDATE2 = 5, WREPL_REPL_INFORM = 8, - WREPL_REPL_9 = 9 + WREPL_REPL_INFORM2 = 9 } wrepl_replication_cmd; typedef [nodiscriminant] union { @@ -118,9 +118,9 @@ interface wrepl [case(WREPL_REPL_SEND_REQUEST)] wrepl_wins_owner owner; [case(WREPL_REPL_SEND_REPLY)] wrepl_send_reply reply; [case(WREPL_REPL_UPDATE)] wrepl_table table; - [case(WREPL_REPL_5)] wrepl_table table; + [case(WREPL_REPL_UPDATE2)] wrepl_table table; [case(WREPL_REPL_INFORM)] wrepl_table table; - [case(WREPL_REPL_9)] wrepl_table table; + [case(WREPL_REPL_INFORM2)] wrepl_table table; } wrepl_replication_info; typedef struct { |