diff options
author | Jeremy Allison <jra@samba.org> | 2006-06-28 17:26:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:04 -0500 |
commit | 57ba729facf9fe83c15d4490ff62020f5c429c0f (patch) | |
tree | 4a068a30fc854ee4f41ddfb3c8e57f5114d5e678 /source3/printing/printing.c | |
parent | 5887885da3c98d7b72a6c6f876a0d352fe3efcde (diff) | |
download | samba-57ba729facf9fe83c15d4490ff62020f5c429c0f.tar.gz |
r16626: Fix bug #3878. Reported by jason@ncac.gwu.edu.
Jeremy.
(This used to be commit 4c3019eb99d0a18a33ef1fa90d01b9c99c0b25c3)
Diffstat (limited to 'source3/printing/printing.c')
-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 fed9c005d0f..d06b34454a4 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -234,7 +234,7 @@ void printing_end(void) when asked for (and only when supported) ****************************************************************************/ -static struct printif *get_printer_fns_from_type( int type ) +static struct printif *get_printer_fns_from_type( enum printing_types type ) { struct printif *printer_fns = &generic_printif; @@ -257,7 +257,7 @@ static struct printif *get_printer_fns_from_type( int type ) static struct printif *get_printer_fns( int snum ) { - return get_printer_fns_from_type( lp_printing(snum) ); + return get_printer_fns_from_type( (enum printing_types)lp_printing(snum) ); } |