From 0288a641e752eaf80c154e2d4f4fab023c73b486 Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Fri, 9 Jun 2000 14:08:03 +0000 Subject: untiltime should be 0 by default to cover the whole 24 hours. J.F. (This used to be commit 53aff484a6a37c83fd2e21d48fd1a5fcbad2f511) --- source3/printing/nt_printing.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 0a6d37a7f0..9ccd7ff740 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1026,11 +1026,11 @@ static uint32 get_a_printer_2_default(NT_PRINTER_INFO_LEVEL_2 **info_ptr, fstrin fstrcpy(info.datatype, "RAW"); info.attributes = PRINTER_ATTRIBUTE_SHARED \ - | PRINTER_ATTRIBUTE_LOCAL \ - | PRINTER_ATTRIBUTE_RAW_ONLY ; /* attributes */ + | PRINTER_ATTRIBUTE_LOCAL \ + | PRINTER_ATTRIBUTE_RAW_ONLY ; /* attributes */ info.starttime = 0; /* Minutes since 12:00am GMT */ - info.untiltime = 1440; /* Minutes since 12:00am GMT */ + info.untiltime = 0; /* Minutes since 12:00am GMT */ if ((info.devmode = construct_nt_devicemode()) == NULL) goto fail; -- cgit