Skip Menu |
 

Date: Wed, 16 May 2012 19:09:46 -0400
From: "W. Trevor King" <wking@tremily.us>
To: krb5-bugs@mit.edu
Subject: [PATCH] trace.c: fix "(empty" -> "(empty)" typo for "{etypes}".
---
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
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 "(empty" typo in "{etypes}" handler in trace.c

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