Compare commits
No commits in common. "f02d7770edab0d77922e21a40b3ba8f402522f1e" and "77c47160e84d5783ade5d58620473decf2bf0979" have entirely different histories.
f02d7770ed
...
77c47160e8
@ -73,4 +73,4 @@ Copyright (C) 2024 DTB. License AGPLv3+: GNU AGPL version 3 or later
|
|||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
|
|
||||||
cat(1p), dd(1), dj(1), tee(1p)
|
cat(1), dd(1), dj(1), tee(1)
|
||||||
|
@ -21,10 +21,11 @@ int main(int argc, char *argv[]){
|
|||||||
fprintf(stderr, "%s: %s: %s\n", argv[0], argv[1],
|
fprintf(stderr, "%s: %s: %s\n", argv[0], argv[1],
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
switch(errno){
|
switch(errno){
|
||||||
case ENAMETOOLONG: return EX_OSERR;
|
|
||||||
case EACCES: return EX_NOPERM;
|
case EACCES: return EX_NOPERM;
|
||||||
case ENOENT: case ENOTDIR:
|
case ELOOP: return EX_UNAVAILABLE;
|
||||||
return EX_NOINPUT;
|
case ENAMETOOLONG: return EX_OSERR;
|
||||||
|
case ENOENT: return EX_NOINPUT;
|
||||||
|
case ENOTDIR: return EX_NOINPUT;
|
||||||
default: return EX_UNAVAILABLE;
|
default: return EX_UNAVAILABLE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user