diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-07-09 15:25:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-09 15:25:34 +0200 |
commit | 904346bf88d7970b941b80a5438934da333570dd (patch) | |
tree | 403e66342f61b068164087c4ee2e8fd81a0736ff | |
parent | c42ca3e73a223b8ce9d655444755098c41fe0c08 (diff) |
cookie: fixed typo in comment
-rw-r--r-- | lib/cookie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cookie.c b/lib/cookie.c index 9eaf5657f..644b33a25 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 */ |