Skip Menu |
 

Date: Wed, 16 May 2012 17:11:12 -0400
From: "W. Trevor King" <wking@tremily.us>
To: krb5-bugs@mit.edu
Subject: [PATCH] trace.c: fix "(null" -> "(null)" typo for "{key}".
---
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 a231ca0..1bbd794 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) {
--
1.7.3.4
Download signature.asc
application/pgp-signature 490B

Message body not shown because it is not plain text.

From: tlyu@mit.edu
Subject: SVN Commit

Fix "(null" typo in "{key}" handler in trace.c

https://github.com/krb5/krb5/commit/59f149f5dfcdea256b2f7b2b1581790b3b503a93
Author: W. Trevor King <wking@tremily.us>
Committer: Tom Yu <tlyu@mit.edu>
Commit: 59f149f5dfcdea256b2f7b2b1581790b3b503a93
Branch: master
src/lib/krb5/os/trace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)