/*
- * $Id: auth_basic.cc,v 1.42 2006/05/29 00:15:03 robertc Exp $
+ * $Id: auth_basic.cc,v 1.43 2006/07/07 19:10:29 serassio Exp $
*
* DEBUG: section 29 Authenticator
* AUTHOR: Duane Wessels
} else if (strcasecmp(param_str, "casesensitive") == 0) {
parse_onoff(&casesensitive);
} else {
- debug(28, 0) ("unrecognised basic auth scheme parameter '%s'\n", param_str);
+ debug(29, 0) ("unrecognised basic auth scheme parameter '%s'\n", param_str);
}
}
/*
- * $Id: auth_digest.cc,v 1.46 2006/05/29 00:15:05 robertc Exp $
+ * $Id: auth_digest.cc,v 1.47 2006/07/07 19:10:29 serassio Exp $
*
* DEBUG: section 29 Authenticator
* AUTHOR: Robert Collins
} else if (strcasecmp(param_str, "post_workaround") == 0) {
parse_onoff(&PostWorkaround);
} else {
- debug(28, 0) ("unrecognised digest auth scheme parameter '%s'\n", param_str);
+ debug(29, 0) ("unrecognised digest auth scheme parameter '%s'\n", param_str);
}
}
/*
- * $Id: auth_negotiate.cc,v 1.9 2006/05/29 00:15:06 robertc Exp $
+ * $Id: auth_negotiate.cc,v 1.10 2006/07/07 19:10:30 serassio Exp $
*
* DEBUG: section 29 Negotiate Authenticator
* AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli
} else if (strcasecmp(param_str, "keep_alive") == 0) {
parse_onoff(&keep_alive);
} else {
- debug(28, 0) ("AuthNegotiateConfig::parse: unrecognised negotiate auth scheme parameter '%s'\n", param_str);
+ debug(29, 0) ("AuthNegotiateConfig::parse: unrecognised negotiate auth scheme parameter '%s'\n", param_str);
}
/*
/*
- * $Id: auth_ntlm.cc,v 1.58 2006/05/29 00:15:07 robertc Exp $
+ * $Id: auth_ntlm.cc,v 1.59 2006/07/07 19:10:30 serassio Exp $
*
* DEBUG: section 29 NTLM Authenticator
* AUTHOR: Robert Collins, Henrik Nordstrom, Francesco Chemolli
} else if (strcasecmp(param_str, "keep_alive") == 0) {
parse_onoff(&keep_alive);
} else {
- debug(28, 0) ("AuthNTLMConfig::parse: unrecognised ntlm auth scheme parameter '%s'\n", param_str);
+ debug(29, 0) ("AuthNTLMConfig::parse: unrecognised ntlm auth scheme parameter '%s'\n", param_str);
}
/*