From 485b4ff5ecf40620a0a6fedc0929dacdb28876a2 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 26 Jan 2002 22:27:12 +0000 Subject: merge from APPLIANCE_HEAD (This used to be commit e3b87ffc8c26f9fd4c3e8181897b8812b7dc4ab6) --- source3/printing/nt_printing.c | 36 +----------------------------------- source3/rpc_server/srv_spoolss_nt.c | 6 +++--- 2 files changed, 4 insertions(+), 38 deletions(-) diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index f36b6bdafc..86802fc81b 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2719,40 +2719,6 @@ WERROR mod_a_printer(NT_PRINTER_INFO_LEVEL printer, uint32 level) return result; } -/**************************************************************************** - Add a printer. This is called from ADDPRINTER(EX) and also SETPRINTER. - We split this out from mod_a_printer as it updates the id's and timestamps. -****************************************************************************/ - -WERROR add_a_printer(NT_PRINTER_INFO_LEVEL printer, uint32 level) -{ - WERROR result; - - dump_a_printer(printer, level); - - switch (level) - { - case 2: - { - /* - * Update the changestamp. See comments in mod_a_printer() - * --jerry - */ - - printer.info_2->changeid = rev_changeid(); - printer.info_2->c_setprinter++; - - result=update_a_printer_2(printer.info_2); - break; - } - default: - result=WERR_UNKNOWN_LEVEL; - break; - } - - return result; -} - /**************************************************************************** Initialize printer devmode & data with previously saved driver init values. ****************************************************************************/ @@ -3923,7 +3889,7 @@ WERROR printer_write_default_dev(int snum, const PRINTER_DEFAULT *printer_defaul * Finally write back to the tdb. */ - result = add_a_printer(*printer, 2); + result = mod_a_printer(*printer, 2); done: diff --git a/source3/rpc_server/srv_spoolss_nt.c b/source3/rpc_server/srv_spoolss_nt.c index c96612eef2..02f7085119 100644 --- a/source3/rpc_server/srv_spoolss_nt.c +++ b/source3/rpc_server/srv_spoolss_nt.c @@ -4597,7 +4597,7 @@ static BOOL nt_printer_info_level_equal(NT_PRINTER_INFO_LEVEL *p1, PI_CHECK_INT(averageppm); /* Yuck - don't check the printername or servername as the - add_a_printer() code plays games with them. You can't + mod_a_printer() code plays games with them. You can't change the printername or the sharename through this interface in Samba. */ @@ -4735,7 +4735,7 @@ static WERROR update_printer(pipes_struct *p, POLICY_HND *handle, uint32 level, } /* Update printer info */ - result = add_a_printer(*printer, 2); + result = mod_a_printer(*printer, 2); done: free_a_printer(&printer, 2); @@ -5911,7 +5911,7 @@ static WERROR spoolss_addprinterex_level_2( pipes_struct *p, const UNISTR2 *uni_ set_driver_init(printer, 2); /* write the ASCII on disk */ - err = add_a_printer(*printer, 2); + err = mod_a_printer(*printer, 2); if (!W_ERROR_IS_OK(err)) { free_a_printer(&printer,2); return err; -- cgit