Changeset 1090 for trunk/dll/filldir.c

Show
Ignore:
Timestamp:
07/21/08 06:25:14 (4 months ago)
Author:
jbs
Message:

Ticket 114: Change environment variable separator from blank to semicolon.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dll/filldir.c

    r1083 r1090  
    4444  16 JUL 08 GKY Use TMP directory for temp files 
    4545  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 
    4647 
    4748***********************************************************************/ 
     
    13871388 
    13881389        p = pszTreeEnvVarList; 
    1389         while (*p == ' ') 
     1390        while (*p == ';') 
    13901391          p++; 
    13911392        while (*p) { 
    13921393          *szFSType = 0; 
    13931394          pp = szFSType; 
    1394           while (*p && *p != ' ') 
     1395          while (*p && *p != ';') 
    13951396            *pp++ = *p++; 
    13961397          *pp = 0; 
    1397           while (*p == ' ') 
     1398          while (*p == ';') 
    13981399            p++; 
    13991400          if (*szFSType &&