From 1c2e707b34da45c040db79540c7a7edde14195b6 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Wed, 23 Dec 2015 07:40:02 +0200 Subject: [PATCH] Fix a comment --- src/pack_unpack.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pack_unpack.c b/src/pack_unpack.c index 617b3c0..9b1ef9e 100644 --- a/src/pack_unpack.c +++ b/src/pack_unpack.c @@ -446,6 +446,7 @@ static int unpack_object(scanner_t *s, json_t *root, va_list *ap) if(!hashtable_get(&key_set, key)) { unpacked++; + /* Save unrecognized keys for the error message */ if (!have_unrecognized_keys) { strbuffer_init(&unrecognized_keys); have_unrecognized_keys = 1; @@ -461,7 +462,7 @@ static int unpack_object(scanner_t *s, json_t *root, va_list *ap) } if (unpacked) { if (!gotopt) { - /* Find the first unrecognized key */ + /* Save unrecognized keys for the error message */ json_object_foreach(root, key, value) { if(!hashtable_get(&key_set, key)) { if (!have_unrecognized_keys) {