artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f18f764
)
Make it possible to have a commented-out local realm in krb.conf to allow
author
tholo
<tholo@openbsd.org>
Fri, 3 May 1996 18:18:56 +0000
(18:18 +0000)
committer
tholo
<tholo@openbsd.org>
Fri, 3 May 1996 18:18:56 +0000
(18:18 +0000)
using Kerberos for remote authentication but not for local authentication
kerberosIV/krb/get_krbrlm.c
patch
|
blob
|
history
diff --git
a/kerberosIV/krb/get_krbrlm.c
b/kerberosIV/krb/get_krbrlm.c
index
d6892a2
..
36e8549
100644
(file)
--- a/
kerberosIV/krb/get_krbrlm.c
+++ b/
kerberosIV/krb/get_krbrlm.c
@@
-67,5
+67,5
@@
krb_get_lrealm(r, n)
return(KFAILURE);
}
(void) fclose(cnffile);
- return(KSUCCESS);
+ return(
*r == '#' ? KFAILURE :
KSUCCESS);
}