marc 98/08/09 14:03:25
Modified: src/modules/standard mod_digest.c
Log:
Wrap line properly for 80 cols.
Revision Changes Path
1.39 +2 -1 apache-1.3/src/modules/standard/mod_digest.c
Index: mod_digest.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_digest.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- mod_digest.c 1998/08/09 12:34:17 1.38
+++ mod_digest.c 1998/08/09 21:03:25 1.39
@@ -162,7 +162,8 @@
if (strcasecmp(scheme=ap_getword(r->pool, &auth_line, ' '), "Digest")) {
/* Client tried to authenticate using wrong auth scheme */
ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r->server,
- "client used wrong authentication scheme: %s for %s",
scheme, r->uri);
+ "client used wrong authentication scheme: %s for %s",
+ scheme, r->uri);
ap_note_digest_auth_failure(r);
return AUTH_REQUIRED;
}