Changeset 1830
- Timestamp:
- Mar 13, 2005, 11:48:58 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/fs.c
-
Property cvs2svn:cvs-rev
changed from
1.13
to1.14
r1829 r1830 938 938 if (szTmp[0] == '/' && szTmp[1] == '/') 939 939 { 940 /* UNC - skip past the s ervername. */940 /* UNC - skip past the share name. */ 941 941 psz = strchr(&szTmp[2], '/'); 942 942 if (!psz) … … 945 945 break; 946 946 } 947 psz = strchr(psz + 1, '/'); 948 if (!psz) 949 { 950 strupr(szTmp); /* The server + share is uppercased for consistant ino_t calculations. */ 951 rcRet = 0; 952 break; 953 } 954 *psz = '\0'; /* The server + share is uppercased for consistant ino_t calculations. */ 955 strupr(szTmp); 956 *psz = '/'; 947 957 pszPrev = ++psz; 948 iRoot = psz - &szTmp[0]; /* Unix root cannot be UNC. */ 958 fInUnixTree = 0; /* Unix root cannot be UNC. */ 959 iRoot = psz - &szTmp[0]; 949 960 psz = strchr(psz, '/'); 950 961 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.