diff options
author | Michael Adam <obnox@samba.org> | 2009-03-23 22:27:59 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-04-27 11:21:03 +0200 |
commit | 8185d31fb0a4ef0219fe15f825a9340083f4c277 (patch) | |
tree | d60247d6e96077e171079748482cc353bdd7eb32 /source3/printing | |
parent | 221151a2a2c30e5c82b100161b498fdbbc1d4382 (diff) | |
download | samba-8185d31fb0a4ef0219fe15f825a9340083f4c277.tar.gz samba-8185d31fb0a4ef0219fe15f825a9340083f4c277.tar.bz2 samba-8185d31fb0a4ef0219fe15f825a9340083f4c277.zip |
s3:registry: replace typedef REGISTRY_VALUE by struct regval_blob
Michael
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 49e28403e2..d6054f2c08 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2473,7 +2473,7 @@ static int pack_values(NT_PRINTER_DATA *data, uint8 *buf, int buflen) { int len = 0; int i, j; - REGISTRY_VALUE *val; + struct regval_blob *val; struct regval_ctr *val_ctr; char *path = NULL; int num_values; @@ -3470,7 +3470,7 @@ bool is_printer_published(Printer_entry *print_hnd, int snum, { NT_PRINTER_INFO_LEVEL *printer = NULL; struct regval_ctr *ctr; - REGISTRY_VALUE *guid_val; + struct regval_blob *guid_val; WERROR win_rc; int i; bool ret = False; @@ -3690,7 +3690,7 @@ WERROR add_printer_data( NT_PRINTER_INFO_LEVEL_2 *p2, const char *key, const cha /**************************************************************************** ***************************************************************************/ -REGISTRY_VALUE* get_printer_data( NT_PRINTER_INFO_LEVEL_2 *p2, const char *key, const char *value ) +struct regval_blob* get_printer_data( NT_PRINTER_INFO_LEVEL_2 *p2, const char *key, const char *value ) { int key_index; @@ -3717,7 +3717,7 @@ static int unpack_values(NT_PRINTER_DATA *printer_data, const uint8 *buf, int bu char *str; int size; uint8 *data_p; - REGISTRY_VALUE *regval_p; + struct regval_blob *regval_p; int key_index; /* add the "PrinterDriverData" key first for performance reasons */ |