diff options
Diffstat (limited to 'scheduler/dirsvc.c')
-rw-r--r-- | scheduler/dirsvc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scheduler/dirsvc.c b/scheduler/dirsvc.c index 0b5c5962..959fd803 100644 --- a/scheduler/dirsvc.c +++ b/scheduler/dirsvc.c @@ -1,9 +1,9 @@ /* - * "$Id: dirsvc.c 10996 2013-05-29 11:51:34Z msweet $" + * "$Id: dirsvc.c 11193 2013-07-26 03:12:37Z msweet $" * * Directory services routines for the CUPS scheduler. * - * Copyright 2007-2012 by Apple Inc. + * Copyright 2007-2013 by Apple Inc. * Copyright 1997-2007 by Easy Software Products, all rights reserved. * * These coded instructions, statements, and computer programs are the @@ -639,7 +639,9 @@ dnssdBuildTxtRecord( if (p->type & CUPS_PRINTER_FAX) { keyvalue[count ][0] = "Fax"; - keyvalue[count++][1] = (p->type & CUPS_PRINTER_FAX) ? "T" : "F"; + keyvalue[count++][1] = "T"; + keyvalue[count ][0] = "rfo"; + keyvalue[count++][1] = rp_str; } if (p->type & CUPS_PRINTER_COLOR) @@ -1668,5 +1670,5 @@ update_smb(int onoff) /* I - 1 = turn on, 0 = turn off */ /* - * End of "$Id: dirsvc.c 10996 2013-05-29 11:51:34Z msweet $". + * End of "$Id: dirsvc.c 11193 2013-07-26 03:12:37Z msweet $". */ |