diff options
author | Jeremy Allison <jra@samba.org> | 2006-06-28 21:35:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:06 -0500 |
commit | e5f766aac82dee8474d66580626033b6018c4108 (patch) | |
tree | 17d1c2cdd0d720f6a0841f3b928f2f0e3ac2844a | |
parent | 45bc56c27b16e7d50f3f6e6ba8d6eb2e4a5abb52 (diff) | |
download | samba-e5f766aac82dee8474d66580626033b6018c4108.tar.gz samba-e5f766aac82dee8474d66580626033b6018c4108.tar.bz2 samba-e5f766aac82dee8474d66580626033b6018c4108.zip |
r16648: Fix bug #3889 reported by jason@ncac.gwu.edu.
Jeremy.
(This used to be commit 2eefe9b6f52e64927c0ae23adce111a42d821206)
-rw-r--r-- | source3/printing/printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index d06b34454a..9dd6bec0be 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1370,7 +1370,7 @@ static void print_queue_receive(int msg_type, struct process_id src, } print_queue_update_with_lock(sharename, - get_printer_fns_from_type(printing_type), + get_printer_fns_from_type((enum printing_types)printing_type), lpqcommand, lprmcommand ); return; |