The branch, master has been updated
via 0281166bb9bdf0015085b4f0a3049e7bf5036da2 (commit)
from fab0baeed143464a152375c721c391d975e9b061 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 0281166bb9bdf0015085b4f0a3049e7bf5036da2
Author: Jeremy Allison <[email protected]>
Date: Tue Feb 17 15:54:33 2009 -0800
Don't miss an absolute pathname as a kerberos keytab path. From Glenn
Machin <[email protected]>.
Jeremy.
-----------------------------------------------------------------------
Summary of changes:
source3/libsmb/clikrb5.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c
index a95a25c..168ca63 100644
--- a/source3/libsmb/clikrb5.c
+++ b/source3/libsmb/clikrb5.c
@@ -1756,6 +1756,11 @@ done:
tmp += 5;
}
+ if (tmp[0] == '/') {
+ /* Treat as a FILE: keytab definition. */
+ found_valid_name = true;
+ }
+
if (found_valid_name) {
if (tmp[0] != '/') {
ret = KRB5_KT_BADNAME;
--
Samba Shared Repository