Changes in uspace/app/bdsh/cmds/modules/touch/touch.c [9d58539:6afc9d7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/touch/touch.c
r9d58539 r6afc9d7 90 90 DIR *dirp; 91 91 92 for (c = 0, opt ind = 0, longind = 0; c != -1; ) {92 for (c = 0, optreset = 1, optind = 0, longind = 0; c != -1; ) { 93 93 c = getopt_long(argc, argv, "c", long_options, &longind); 94 94 switch (c) { … … 123 123 124 124 /* Check whether file exists if -c (--no-create) option is given */ 125 if ((!no_create) || ((no_create) && (stat(buff, &file_stat) == EOK)))125 if ((!no_create) || ((no_create) && (stat(buff, &file_stat) == 0))) 126 126 fd = open(buff, O_RDWR | O_CREAT); 127 127
Note:
See TracChangeset
for help on using the changeset viewer.