- Timestamp:
- 10/07/08 15:30:08 (2 months ago)
- Files:
-
- 1 modified
-
Whitix/trunk/user/burn/main.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/user/burn/main.c
r921 r1095 267 267 str[end-start]='\0'; 268 268 269 // printf("str = %s, %#X, %d\n", str, end-start, strlen(str)); 270 269 /* Check the command table for matches. */ 271 270 curr=btTable; 272 271 … … 282 281 } 283 282 283 /* Check the current directory, but only signal success if the command 284 * is a file. 285 */ 284 286 if (!SysStat(str, &stat, -1) && (stat.mode & _SYS_STAT_FILE)) 285 287 goto success; 286 288 289 /* Prefix /Applications to the string, and try to see if it exists in 290 * the /Applications directory. 291 */ 287 292 strcpy(buf, "/Applications/"); 288 293 strcat(buf, str);
