instead of the cryptic "Request:" use "HTTP request:"

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13010 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-10-14 11:02:33 +00:00
parent 2ded4d8b29
commit dfbc07b034

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1997-2002 Kungliga Tekniska H<>gskolan
* Copyright (c) 1997-2003 Kungliga Tekniska H<>gskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -637,7 +637,7 @@ handle_http_tcp (struct descr *d)
t++;
if(de_http(t) != 0) {
kdc_log(0, "Malformed HTTP request from %s", d->addr_string);
kdc_log(5, "Request: %s", t);
kdc_log(5, "HTTP request: %s", t);
free(data);
return -1;
}
@@ -663,7 +663,7 @@ handle_http_tcp (struct descr *d)
write(d->s, proto, strlen(proto));
write(d->s, msg, strlen(msg));
kdc_log(0, "HTTP request from %s is non KDC request", d->addr_string);
kdc_log(5, "Request: %s", t);
kdc_log(5, "HTTP request: %s", t);
free(data);
return -1;
}