]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix invalid test strings in t_oid.c
authorLukas Slebodnik <lslebodn@redhat.com>
Sat, 21 Jun 2014 21:36:38 +0000 (23:36 +0200)
committerGreg Hudson <ghudson@mit.edu>
Sat, 12 Jul 2014 17:35:46 +0000 (13:35 -0400)
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]

src/tests/gssapi/t_oid.c

index 8bfd2df5a2485b47d7a7fcb618ef05689ad5a4fa..417f7b9c6a029a0147abfc7eb29d059004281a32 100644 (file)
@@ -109,7 +109,7 @@ static char *invalid_strings[] = {
     "1.+0",
     "+0.1",
     "{ 1 garbage }",
-    "{ 1 }"
+    "{ 1 }",
     "{ 0 40 }",
     "{ 1 40 }",
     "{ 1 128 }",