summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2012-11-25 17:53:02 -0500
committerGreg Hudson <ghudson@mit.edu>2012-11-25 17:54:50 -0500
commitd5aac5c1a010410e79cce4219e618d9ce27d8621 (patch)
treec1c2546102f9e4f7cf57d71239bcd0223b178e53 /src/include
parent54f325ea0be4c782dcba5b12b5eeec13883f546f (diff)
downloadkrb5-d5aac5c1a010410e79cce4219e618d9ce27d8621.tar.gz
krb5-d5aac5c1a010410e79cce4219e618d9ce27d8621.tar.xz
krb5-d5aac5c1a010410e79cce4219e618d9ce27d8621.zip
Remove broken clean_hostname trace messages
The trace messages in krb5int_clean_hostname were outputting the entire contents of the output buffer (mostly uninitialized garbage) into the trace log. Since these messages were essentially redundant with messages in the callers, and were arguably at too low of a level to begin with, simply remove them. ticket: 7459 (new) target_version: 1.11 tags: pullup
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-trace.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/k5-trace.h b/src/include/k5-trace.h
index 57d6119e0..df7159fe5 100644
--- a/src/include/k5-trace.h
+++ b/src/include/k5-trace.h
@@ -402,13 +402,6 @@ void krb5int_trace(krb5_context context, const char *fmt, ...);
#define TRACE_GET_FALLBACK_HOST_REALM_RETURN(c, host, realm) \
TRACE(c, "Got fallback realm {str} for host {str}", realm, host)
-#define TRACE_CLEAN_HOSTNAME(c, host, size, localhost) \
- TRACE(c, "Clean host {str} with local host {lenstr}", \
- host, size, localhost)
-#define TRACE_CLEAN_HOSTNAME_RETURN(c, host, size, localhost) \
- TRACE(c, "Cleaned host {str} to local host {lenstr}", \
- host, size, localhost)
-
#define TRACE_SNAME_TO_PRINCIPAL(c, host, sname, type) \
TRACE(c, "Convert service {str} ({ptype}) on host {str} to principal", \
sname, type, host)