From: Lukas Slebodnik Date: Sat, 21 Jun 2014 21:36:38 +0000 (+0200) Subject: Fix invalid test strings in t_oid.c X-Git-Tag: krb5-1.13-alpha1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b36398f1b501186a3111cdd794f91e0201a8d5c;p=thirdparty%2Fkrb5.git Fix invalid test strings in t_oid.c A missing comma caused two invalid strings to be concatenated. The resulting string was still invalid so the tests passed. [ghudson@mit.edu: clarified commit message] --- diff --git a/src/tests/gssapi/t_oid.c b/src/tests/gssapi/t_oid.c index 8bfd2df5a2..417f7b9c6a 100644 --- a/src/tests/gssapi/t_oid.c +++ b/src/tests/gssapi/t_oid.c @@ -109,7 +109,7 @@ static char *invalid_strings[] = { "1.+0", "+0.1", "{ 1 garbage }", - "{ 1 }" + "{ 1 }", "{ 0 40 }", "{ 1 40 }", "{ 1 128 }",