From: W. Trevor King Date: Wed, 16 May 2012 21:11:12 +0000 (-0400) Subject: Fix "(null" typo in "{key}" handler in trace.c X-Git-Url: http://git.tremily.us/?p=krb5.git;a=commitdiff_plain;h=59f149f5dfcdea256b2f7b2b1581790b3b503a93 Fix "(null" typo in "{key}" handler in trace.c ticket: 7134 --- diff --git a/src/lib/krb5/os/trace.c b/src/lib/krb5/os/trace.c index e859c1344..84b5c77da 100644 --- a/src/lib/krb5/os/trace.c +++ b/src/lib/krb5/os/trace.c @@ -193,7 +193,7 @@ trace_format(krb5_context context, const char *fmt, va_list ap) } else if (strcmp(tmpbuf, "key") == 0) { key = va_arg(ap, krb5_key); if (key == NULL) - krb5int_buf_add(&buf, "(null"); + krb5int_buf_add(&buf, "(null)"); else subfmt(context, &buf, "{keyblock}", &key->keyblock); } else if (strcmp(tmpbuf, "cksum") == 0) {