diff options
author | Günther Deschner <gd@samba.org> | 2009-02-12 17:45:09 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-12 18:03:11 +0100 |
commit | 80b3e5b36efb5f7c48b43e8f5d67a102ae71ebf5 (patch) | |
tree | 651ac0177dbd3a674c286a76c1ef972654e19e6b /librpc | |
parent | 8fa71b1a0858b5098b99478a869b3ffc9c41eccf (diff) | |
download | samba-80b3e5b36efb5f7c48b43e8f5d67a102ae71ebf5.tar.gz samba-80b3e5b36efb5f7c48b43e8f5d67a102ae71ebf5.tar.bz2 samba-80b3e5b36efb5f7c48b43e8f5d67a102ae71ebf5.zip |
spoolss: always set version 2 in notify info and option structs.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/spoolss.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/spoolss.idl b/librpc/idl/spoolss.idl index 5710dd988c..f3d0747d0f 100644 --- a/librpc/idl/spoolss.idl +++ b/librpc/idl/spoolss.idl @@ -1458,7 +1458,7 @@ import "misc.idl", "security.idl", "winreg.idl"; } spoolss_NotifyOptionsArray; typedef struct { - uint32 version; + [value(2)] uint32 version; uint32 flags; uint32 count; [size_is(count)] spoolss_NotifyOptionsArray *options; @@ -1506,7 +1506,7 @@ import "misc.idl", "security.idl", "winreg.idl"; } spoolss_Notify; typedef struct { - uint32 version; + [value(2)] uint32 version; uint32 flags; uint32 count; [size_is(count)] spoolss_Notify notifies[]; |