diff options
Diffstat (limited to 'src/print_path_exists.c')
-rw-r--r-- | src/print_path_exists.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print_path_exists.c b/src/print_path_exists.c index c5225a1..a2fcb14 100644 --- a/src/print_path_exists.c +++ b/src/print_path_exists.c @@ -21,10 +21,10 @@ void print_path_exists(yajl_gen json_gen, char *buffer, const char *title, const continue; } - if (strncmp(walk+1, "title", strlen("title")) == 0) { + if (BEGINS_WITH(walk+1, "title")) { outwalk += sprintf(outwalk, "%s", title); walk += strlen("title"); - } else if (strncmp(walk+1, "status", strlen("status")) == 0) { + } else if (BEGINS_WITH(walk+1, "status")) { outwalk += sprintf(outwalk, "%s", (exists ? "yes" : "no")); walk += strlen("status"); } |