Changeset 92fd52d7 in mainline for uspace/app/bdsh/cmds/modules
- Timestamp:
- 2009-04-09T21:16:50Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7afb4a5
- Parents:
- a2c58f6
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/help/help.c
ra2c58f6 r92fd52d7 108 108 109 109 if (argc == 3) { 110 if (!str cmp("extended", argv[2]))110 if (!str_cmp("extended", argv[2])) 111 111 level = HELP_LONG; 112 112 else -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
ra2c58f6 r92fd52d7 150 150 /* Sometimes make or scripts conjoin odd paths. Account for something 151 151 * like this: ../../foo/bar/../foo/foofoo/./bar */ 152 if (!str cmp(dirs[i], "..") || !strcmp(dirs[i], ".")) {152 if (!str_cmp(dirs[i], "..") || !str_cmp(dirs[i], ".")) { 153 153 if (0 != (chdir(dirs[i]))) { 154 154 cli_error(CL_EFAIL, "%s: impossible path: %s", -
uspace/app/bdsh/cmds/modules/rm/rm.c
ra2c58f6 r92fd52d7 217 217 i = optind; 218 218 while (NULL != argv[i]) { 219 len = str len(argv[i]) + 2;219 len = str_size(argv[i]) + 2; 220 220 buff = (char *) realloc(buff, len); 221 221 if (buff == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.