Changeset 7afb4a5 in mainline for uspace/srv
- Timestamp:
- 2009-04-09T21:28:50Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 095003a8
- Parents:
- 92fd52d7
- Location:
- uspace/srv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_dentry.c
r92fd52d7 r7afb4a5 67 67 if (!(rc = stricmp(name, component))) 68 68 return rc; 69 if (!str chr(name, '.')) {69 if (!str_chr(name, '.')) { 70 70 /* 71 71 * There is no '.' in the name, so we know that there is enough -
uspace/srv/loader/main.c
r92fd52d7 r7afb4a5 276 276 277 277 /* Set the task name. */ 278 cp = str rchr(pathname, '/');278 cp = str_rchr(pathname, '/'); 279 279 cp = (cp == NULL) ? pathname : (cp + 1); 280 280 task_set_name(cp);
Note:
See TracChangeset
for help on using the changeset viewer.