diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-16 20:56:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:11 -0500 |
commit | e95942ed84fef4dd34c380d59145d3e182b01702 (patch) | |
tree | 8708f2aaf5d7c0c39bd56d93cf28a412b151b65c /source3/printing/nt_printing.c | |
parent | 9b48f7d76d1700f3be951b0322a7184bd192004f (diff) | |
download | samba-e95942ed84fef4dd34c380d59145d3e182b01702.tar.gz |
r22954: More messaging_register
(This used to be commit 9b8df24107ffe3016031e5257c5680689f061886)
Diffstat (limited to 'source3/printing/nt_printing.c')
-rw-r--r-- | source3/printing/nt_printing.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 965793b3cf3..84dba9d55a7 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -542,7 +542,7 @@ static BOOL upgrade_to_version_5(void) Open the NT printing tdbs. Done once before fork(). ****************************************************************************/ -BOOL nt_printing_init(void) +BOOL nt_printing_init(struct messaging_context *msg_ctx) { const char *vstring = "INFO/version"; WERROR win_rc; @@ -631,15 +631,16 @@ BOOL nt_printing_init(void) * drivers are installed */ - message_register(MSG_PRINTER_DRVUPGRADE, do_drv_upgrade_printer, NULL); + messaging_register(msg_ctx, NULL, MSG_PRINTER_DRVUPGRADE, + do_drv_upgrade_printer); /* * register callback to handle updating printer data * when a driver is initialized */ - message_register(MSG_PRINTERDATA_INIT_RESET, reset_all_printerdata, - NULL); + messaging_register(msg_ctx, NULL, MSG_PRINTERDATA_INIT_RESET, + reset_all_printerdata); /* of course, none of the message callbacks matter if you don't tell messages.c that you interested in receiving PRINT_GENERAL |