From 15f8a056d5daca0600fbb11485060ac3337ffebe Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Fri, 21 Dec 2012 06:44:39 +0100 Subject: Fixed typo --- content/fetchers/about.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'content/fetchers') diff --git a/content/fetchers/about.c b/content/fetchers/about.c index f0d7c9e77..f514b1c5c 100644 --- a/content/fetchers/about.c +++ b/content/fetchers/about.c @@ -321,7 +321,7 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx) while (post_item != NULL) { if (strcmp(post_item->name, "token") == 0 - && sctrcmp(post_item->value, token) == 0) { + && strcmp(post_item->value, token) == 0) { valid_token = true; if (do_save == true) { break; @@ -329,7 +329,7 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx) } if (strcmp(post_item->name, "action") == 0 - && sctrcmp(post_item->value, "Save") == 0) { + && strcmp(post_item->value, "Save") == 0) { do_save = true; if (valid_token == true) { break; -- cgit v1.2.3