From 6c2242eadee7b9e69d3a868426807e525a4f5b0e Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Wed, 12 Jul 2000 16:11:33 +0000 Subject: we are now sure the printer_info_2 timestamp is updated everytime required. J.F. (This used to be commit 08b41bab177affac088c981d7c620728e8e6e9b0) --- source3/printing/nt_printing.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 4e250d43c0..23764f81b5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -611,6 +611,8 @@ static uint32 add_a_printer_2(NT_PRINTER_INFO_LEVEL_2 *info) char *buf; int buflen, len, ret; TDB_DATA kbuf, dbuf; + NTTIME time_nt; + time_t time_unix; /* * in addprinter: no servername and the printer is the name @@ -637,6 +639,9 @@ static uint32 add_a_printer_2(NT_PRINTER_INFO_LEVEL_2 *info) * behind a SAMBA share. */ + unix_to_nt_time(&time_nt, time_unix); + info->changeid=time_nt.low; + info->c_setprinter++; buf = NULL; buflen = 0; -- cgit