From: W. Trevor King Date: Wed, 16 May 2012 23:09:46 +0000 (-0400) Subject: Fix "(empty" typo in "{etypes}" handler in trace.c X-Git-Tag: krb5-1.11-alpha1~541 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ea1d4b36934480c2acec98738b18da6178d8941;p=thirdparty%2Fkrb5.git Fix "(empty" typo in "{etypes}" handler in trace.c ticket: 7137 --- diff --git a/src/lib/krb5/os/trace.c b/src/lib/krb5/os/trace.c index 84b5c77daf..bc52f2b213 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)