[krbdev.mit.edu #7137] [PATCH] trace.c: fix "(empty" -> "(empty)" typo for "{etypes}".
"W. Trevor King" via RT
rt-comment at krbdev.mit.edu
Thu May 17 08:22:57 EDT 2012
---
src/lib/krb5/os/trace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/lib/krb5/os/trace.c b/src/lib/krb5/os/trace.c
index 1bbd794..2d8913e 100644
--- a/src/lib/krb5/os/trace.c
+++ b/src/lib/krb5/os/trace.c
@@ -225,7 +225,7 @@ trace_format(krb5_context context, const char *fmt, va_list ap)
} else if (strcmp(tmpbuf, "etypes") == 0) {
etypes = va_arg(ap, krb5_enctype *);
if (etypes == NULL || *etypes == 0)
- krb5int_buf_add(&buf, "(empty");
+ krb5int_buf_add(&buf, "(empty)");
for (; etypes != NULL && *etypes != 0; etypes++) {
subfmt(context, &buf, "{etype}", *etypes);
if (*(etypes + 1) != 0)
--
1.7.3.4
More information about the krb5-bugs
mailing list