diff options
-rw-r--r-- | source3/include/nt_printing.h | 2 | ||||
-rwxr-xr-x | source3/include/rpc_spoolss.h | 2 | ||||
-rw-r--r-- | source3/script/mkproto.awk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/nt_printing.h b/source3/include/nt_printing.h index 8c63ba0da1..3aad3beff9 100644 --- a/source3/include/nt_printing.h +++ b/source3/include/nt_printing.h @@ -244,7 +244,7 @@ typedef struct nt_printer_info_level_2 fstring datatype; fstring parameters; NT_PRINTER_PARAM *specific; - SEC_DESC_BUF secdesc; + SEC_DESC_BUF *secdesc_buf; /* not used but ... and how ??? */ uint32 changeid; uint32 c_setprinter; diff --git a/source3/include/rpc_spoolss.h b/source3/include/rpc_spoolss.h index 7d353f0d99..9f127f3e5d 100755 --- a/source3/include/rpc_spoolss.h +++ b/source3/include/rpc_spoolss.h @@ -796,7 +796,7 @@ PRINTER_INFO_2; typedef struct printer_info_3 { uint32 flags; - SEC_DESC sec; + SEC_DESC *secdesc; } PRINTER_INFO_3; diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 0b9c1f784e..734db3ca53 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -108,7 +108,7 @@ END { gotstart = 1; } - if( $0 ~ /^TDB_CONTEXT|^TDB_DATA|^smb_ucs2_t|^TALLOC_CTX|^hash_element/ ) { + if( $0 ~ /^TDB_CONTEXT|^TDB_DATA|^smb_ucs2_t|^TALLOC_CTX|^hash_element|^NT_DEVICEMODE/ ) { gotstart = 1; } |