summaryrefslogtreecommitdiff
path: root/source3/printing/printing.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-24 06:10:21 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-24 06:10:21 +0000
commita95efec534410cb96ab2e801eb601331b15ca23c (patch)
tree3ce7b7db0b0b953df98ee70edef62fc6891c8c95 /source3/printing/printing.c
parent2962a4cc616660dfc3ef5765a4911abec86ae36f (diff)
downloadsamba-a95efec534410cb96ab2e801eb601331b15ca23c.tar.gz
samba-a95efec534410cb96ab2e801eb601331b15ca23c.tar.bz2
samba-a95efec534410cb96ab2e801eb601331b15ca23c.zip
a fairly big change in spoolss.
got rid of the forms, drivers and printers files in the nt drivers directory and instead use a single tdb note that this is _not_ all finished. (This used to be commit 06763d1ec2fafc42f8ee3f36f0aeacceb3a7109d)
Diffstat (limited to 'source3/printing/printing.c')
-rw-r--r--source3/printing/printing.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c
index 0a2f494a27..7d57a810ee 100644
--- a/source3/printing/printing.c
+++ b/source3/printing/printing.c
@@ -82,7 +82,7 @@ BOOL print_backend_init(void)
}
tdb_writeunlock(tdb);
- return True;
+ return nt_printing_init();
}
/****************************************************************************
@@ -463,6 +463,9 @@ static BOOL print_job_delete1(int jobid)
print_run_command(snum,
lp_lprmcommand(snum), NULL,
"%j", jobstr,
+ /*
+ "%T", http_timestring(pjob->starttime),
+ */
NULL, NULL);
}
@@ -701,6 +704,7 @@ BOOL print_job_end(int jobid)
print_run_command(snum,
lp_printcommand(snum), NULL,
"%s", p,
+ /* "%J", stripquote(pjob->jobname), */
"%f", p);
chdir(wd);