summaryrefslogtreecommitdiff
path: root/scheduler/printers.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2014-03-28 19:16:05 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2014-03-28 19:16:05 +0000
commite066087949e5ede55a5a8efe7168a8d64f99abc6 (patch)
tree098b606dd6be8c8fbb71ae8e759f34f3b86b9fd9 /scheduler/printers.c
parenta99f5c6a052c724e50d262b9e71490835fcc7e16 (diff)
Drop lppasswd and (server-side) Digest authentication (STR #4321)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11776 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'scheduler/printers.c')
-rw-r--r--scheduler/printers.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/scheduler/printers.c b/scheduler/printers.c
index 73e1fba0d..4818c863d 100644
--- a/scheduler/printers.c
+++ b/scheduler/printers.c
@@ -2054,10 +2054,8 @@ cupsdSetPrinterAttrs(cupsd_printer_t *p)/* I - Printer to setup */
if ((auth_type = auth->type) == CUPSD_AUTH_DEFAULT)
auth_type = cupsdDefaultAuthType();
- if (auth_type == CUPSD_AUTH_BASIC || auth_type == CUPSD_AUTH_BASICDIGEST)
+ if (auth_type == CUPSD_AUTH_BASIC)
auth_supported = "basic";
- else if (auth_type == CUPSD_AUTH_DIGEST)
- auth_supported = "digest";
#ifdef HAVE_GSSAPI
else if (auth_type == CUPSD_AUTH_NEGOTIATE)
auth_supported = "negotiate";