--------------------- PatchSet 6535 Date: 2008/01/19 05:51:48 Author: amosjeffries Branch: squid3-ipv6 Tag: (none) Log: Typo. Members: src/cache_cf.cc:1.40.2.54->1.40.2.55 Index: squid3/src/cache_cf.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/cache_cf.cc,v retrieving revision 1.40.2.54 retrieving revision 1.40.2.55 diff -u -r1.40.2.54 -r1.40.2.55 --- squid3/src/cache_cf.cc 19 Jan 2008 03:13:56 -0000 1.40.2.54 +++ squid3/src/cache_cf.cc 19 Jan 2008 05:51:48 -0000 1.40.2.55 @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.cc,v 1.40.2.54 2008/01/19 03:13:56 amosjeffries Exp $ + * $Id: cache_cf.cc,v 1.40.2.55 2008/01/19 05:51:48 amosjeffries Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -213,7 +213,7 @@ char* file = strtok_r(files, w_space, &saveptr); while (file != NULL) { error_count += parseOneConfigFile(file, depth); - file = strtok_r(files, w_space, &saveptr); + file = strtok_r(NULL, w_space, &saveptr); } return error_count; }