projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
04d6067
)
ELOOP is like ENOENT
author
John Carr
<jfc@mit.edu>
Mon, 3 Jun 1991 16:21:26 +0000
(16:21 +0000)
committer
John Carr
<jfc@mit.edu>
Mon, 3 Jun 1991 16:21:26 +0000
(16:21 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2137
dc483132
-0cff-0310-8789-
dd5450dbe970
src/lib/krb5/ccache/stdio/scc_errs.c
patch
|
blob
|
history
diff --git
a/src/lib/krb5/ccache/stdio/scc_errs.c
b/src/lib/krb5/ccache/stdio/scc_errs.c
index 2e3b40736dd96ee8ef19084d3c32e618634742f0..d126275b6e97dafa3fb0d320bb7d2f41293c13fa 100644
(file)
--- a/
src/lib/krb5/ccache/stdio/scc_errs.c
+++ b/
src/lib/krb5/ccache/stdio/scc_errs.c
@@
-25,6
+25,9
@@
int errnum;
{
register int retval;
switch (errnum) {
+#ifdef ELOOP
+ case ELOOP: /* Bad symlink is like no file. */
+#endif
case ENOENT:
retval = KRB5_FCC_NOFILE;
break;
@@
-32,9
+35,6
@@
int errnum;
case EACCES:
case EISDIR:
case ENOTDIR:
-#ifdef ELOOP
- case ELOOP: /* XXX */
-#endif
case ETXTBSY:
case EBUSY:
case EROFS: