From 8185d31fb0a4ef0219fe15f825a9340083f4c277 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Mar 2009 22:27:59 +0100 Subject: s3:registry: replace typedef REGISTRY_VALUE by struct regval_blob Michael --- source3/printing/nt_printing.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/printing') 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 */ -- cgit