From 22ea1952c8d74a1a54af5e507d124c1e30da067f Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sun, 3 Jul 2005 02:05:01 +0000 Subject: r8089: successfully delete printer subkeys via the registry....now for values (This used to be commit d3427960b0676c506c639b582a2544dc58990c9e) --- source3/printing/nt_printing.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 47e0af9633..b3a2ca5893 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2560,6 +2560,38 @@ int add_new_printer_key( NT_PRINTER_DATA *data, const char *name ) return key_index; } +/**************************************************************************** + search for a registry key name in the existing printer data + ***************************************************************************/ + +int delete_printer_key( NT_PRINTER_DATA *data, const char *name ) +{ + int i; + NT_PRINTER_KEY *printer_key; + + for ( i=0; inum_keys; i++ ) { + if ( strequal( data->keys[i].name, name ) ) { + + /* cleanup memory */ + + printer_key = &data->keys[i]; + SAFE_FREE( printer_key->name ); + regval_ctr_destroy( &printer_key->values ); + + /* if not the end of the array, move remaining elements down one slot */ + + data->num_keys--; + if ( data->num_keys && (i < data->num_keys) ) + memmove( &data->keys[i], &data->keys[i+1], sizeof(NT_PRINTER_KEY)*(data->num_keys-i) ); + + break; + } + } + + + return data->num_keys; +} + /**************************************************************************** search for a registry key name in the existing printer data ***************************************************************************/ -- cgit