Changeset 1090 for trunk/dll/filldir.c
- Timestamp:
- 07/21/08 06:25:14 (4 months ago)
- Files:
-
- 1 modified
-
trunk/dll/filldir.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/filldir.c
r1083 r1090 44 44 16 JUL 08 GKY Use TMP directory for temp files 45 45 20 Jul 08 JBS Ticket 114: Support user-selectable env. strings in Tree container. 46 21 Jul 08 JBS Ticket 114: Change env var separator from blank to semicolon 46 47 47 48 ***********************************************************************/ … … 1387 1388 1388 1389 p = pszTreeEnvVarList; 1389 while (*p == ' ')1390 while (*p == ';') 1390 1391 p++; 1391 1392 while (*p) { 1392 1393 *szFSType = 0; 1393 1394 pp = szFSType; 1394 while (*p && *p != ' ')1395 while (*p && *p != ';') 1395 1396 *pp++ = *p++; 1396 1397 *pp = 0; 1397 while (*p == ' ')1398 while (*p == ';') 1398 1399 p++; 1399 1400 if (*szFSType &&
