/*
- * $Id: acl.cc,v 1.197 1999/01/29 21:28:06 wessels Exp $
+ * $Id: acl.cc,v 1.198 1999/04/07 19:52:14 wessels Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
char *sent_auth;
char *cleartext;
+ debug(28, 6) ("aclDecodeProxyAuth: header = '%s'\n", proxy_auth);
if (proxy_auth == NULL)
return 0;
if (strlen(proxy_auth) < SKIP_BASIC_SZ)
if ((*password = strchr(*user, ':')) != NULL)
*(*password)++ = '\0';
if (*password == NULL) {
- debug(28, 1) ("aclDecodeProxyAuth: no password in proxy authorization header\n");
+ debug(28, 1) ("aclDecodeProxyAuth: no password in proxy authorization header '%s'\n", proxy_auth);
return 0;
}
return 1;