From 6ea1d4b36934480c2acec98738b18da6178d8941 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 16 May 2012 19:09:46 -0400 Subject: [PATCH] Fix "(empty" typo in "{etypes}" handler in trace.c ticket: 7137 --- src/lib/krb5/os/trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/krb5/os/trace.c b/src/lib/krb5/os/trace.c index 84b5c77da..bc52f2b21 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) -- 2.26.2