diff options
author | Jim McDonough <jmcd@samba.org> | 2002-05-10 00:08:54 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-05-10 00:08:54 +0000 |
commit | 6b623b68d4ff5178b592e9d59c2f495b8c4c2953 (patch) | |
tree | 51b3636d58cb58ebb4aea8958e4f70eede3ebadd /source3 | |
parent | 961352403f169cbcbf899e7e24dd31473948f785 (diff) | |
download | samba-6b623b68d4ff5178b592e9d59c2f495b8c4c2953.tar.gz samba-6b623b68d4ff5178b592e9d59c2f495b8c4c2953.tar.bz2 samba-6b623b68d4ff5178b592e9d59c2f495b8c4c2953.zip |
Ok, ok, I was too impatient...
(This used to be commit af35c5a57ca5544441bd82b695d878f388cd5e73)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/printing/printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index b599d8d7ea..d7ac1f49c7 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -520,7 +520,7 @@ void start_background_queue(void) if (!print_backend_init()) exit(1); - message_register(MSG_PRINTER_DRVUPGRADE, print_queue_receive); + message_register(MSG_PRINTER_UPDATE, print_queue_receive); DEBUG(5,("start_background_queue: background LPQ thread waiting for messages\n")); while (1) { @@ -537,7 +537,7 @@ update the internal database from the system print queue for a queue static void print_queue_update(int snum) { if (background_lpq_updater_pid > 0) { - message_send_pid(background_lpq_updater_pid, MSG_PRINTER_DRVUPGRADE, + message_send_pid(background_lpq_updater_pid, MSG_PRINTER_UPDATE, &snum, sizeof(snum), False); } } |