Changeset 6eb2e96 in mainline for uspace/lib/libc/generic/vfs/vfs.c
- Timestamp:
- 2009-04-10T07:53:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3cc6a52
- Parents:
- f4b1535
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/vfs/vfs.c
rf4b1535 r6eb2e96 77 77 return NULL; 78 78 } 79 str_ ncpy(ncwd_path_nc, cwd_path, cwd_size + 1 + size + 1);79 str_cpy(ncwd_path_nc, cwd_size + 1 + size + 1, cwd_path); 80 80 ncwd_path_nc[cwd_size] = '/'; 81 81 ncwd_path_nc[cwd_size + 1] = '\0'; … … 535 535 return NULL; 536 536 } 537 str_ ncpy(buf, cwd_path, size);537 str_cpy(buf, size, cwd_path); 538 538 futex_up(&cwd_futex); 539 539 return buf;
Note:
See TracChangeset
for help on using the changeset viewer.