Ignore:
Timestamp:
Jul 12, 2011, 11:52:39 AM (14 years ago)
Author:
bird
Message:

kmkbuiltins: More specific error messages (solaris EINTR).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/kmkbuiltin/rmdir.c

    r2121 r2466  
    128128                        if (    (!ignore_fail_on_non_empty || (errno != ENOTEMPTY && errno != EPERM && errno != EACCES && errno != EINVAL && errno != EEXIST))
    129129                            &&  (!ignore_fail_on_not_exist || errno != ENOENT)) {
    130                                 warn("%s", *argv);
     130                                warn("rmdir: %s", *argv);
    131131                                errors = 1;
    132132                                continue;
     
    181181                                break;
    182182                        if (!ignore_fail_on_not_exist || errno != ENOENT) {
    183                                 warn("%s", path);
     183                                warn("rmdir: %s", path);
    184184                                return (1);
    185185                        }
Note: See TracChangeset for help on using the changeset viewer.