From: Daniel Stenberg Date: Mon, 9 Jul 2012 13:25:34 +0000 (+0200) Subject: cookie: fixed typo in comment X-Git-Tag: curl-7_27_0~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=904346bf88d7970b941b80a5438934da333570dd;p=thirdparty%2Fcurl.git cookie: fixed typo in comment --- diff --git a/lib/cookie.c b/lib/cookie.c index 9eaf5657fc..644b33a256 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -882,7 +882,7 @@ struct Cookie *Curl_cookie_getlist(struct CookieInfo *c, for(i=0; co; co = co->next) array[i++] = co; - /* now sort the cookie pointers in path lenth order */ + /* now sort the cookie pointers in path length order */ qsort(array, matches, sizeof(struct Cookie *), cookie_sort); /* remake the linked list order according to the new order */