summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-06-01 02:44:17 +0000
committerJeremy Allison <jra@samba.org>2000-06-01 02:44:17 +0000
commit864e7bde0e804edbb2425b9c4c7ff271553f8169 (patch)
treeb82031b72c4f263c6621649617c8472bff9b08b7
parent0a5e7a8f31c26fe80db5398a441a1969a8882845 (diff)
downloadsamba-864e7bde0e804edbb2425b9c4c7ff271553f8169.tar.gz
samba-864e7bde0e804edbb2425b9c4c7ff271553f8169.tar.xz
samba-864e7bde0e804edbb2425b9c4c7ff271553f8169.zip
More stuff I cvan't afford to lose. I'm realizing how dependent I am
on this bloody CVS link.... Jeremy.
-rw-r--r--source/include/nt_printing.h2
-rwxr-xr-xsource/include/rpc_spoolss.h2
-rw-r--r--source/script/mkproto.awk2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/include/nt_printing.h b/source/include/nt_printing.h
index 8c63ba0da15..3aad3beff9b 100644
--- a/source/include/nt_printing.h
+++ b/source/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/source/include/rpc_spoolss.h b/source/include/rpc_spoolss.h
index 7d353f0d998..9f127f3e5d5 100755
--- a/source/include/rpc_spoolss.h
+++ b/source/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/source/script/mkproto.awk b/source/script/mkproto.awk
index 0b9c1f784e7..734db3ca53d 100644
--- a/source/script/mkproto.awk
+++ b/source/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;
}