diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-19 17:23:52 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-19 17:23:52 +0800 |
commit | e39dff5001bdd36bd2a2ca546ff19ea39965f79c (patch) | |
tree | 7587573d78263cb15f5f67bad597ff3d9a0ed96e /handler.c | |
parent | c3ede83912dd2d9e63806da18e71728b29f924ac (diff) |
One handle for one request
Diffstat (limited to 'handler.c')
-rw-r--r-- | handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ static void recurse(TidyDoc doc, TidyNode tnod, struct icclient_catalog **catalo sprintf(prefix, "%s%s", image_dir, subdir); size_t prefix_len = strlen(prefix); for (TidyAttr attr = tidyAttrFirst(child); attr; attr = tidyAttrNext(attr)) { - ctmbstr name = tidyAttrName(attr); + name = tidyAttrName(attr); ctmbstr value = tidyAttrValue(attr); if (!strcmp(name, "src")) { if (strncmp(value, prefix, prefix_len)) |