diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-06-06 04:50:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:54 -0500 |
commit | e0bb0e9f951a3cf4bc4ad6a11e62dae6d4ddf3e1 (patch) | |
tree | 1145d2327d3c6fd9e0cad6618450bcaf0cd08b72 /source4/heimdal | |
parent | 66f77c4ebfa66221abcf611b4d222fc424987f12 (diff) | |
download | samba-e0bb0e9f951a3cf4bc4ad6a11e62dae6d4ddf3e1.tar.gz samba-e0bb0e9f951a3cf4bc4ad6a11e62dae6d4ddf3e1.tar.xz samba-e0bb0e9f951a3cf4bc4ad6a11e62dae6d4ddf3e1.zip |
r16056: Fix errors found by trying to use our kpasswd server and the Apple client.
Andrew Bartlett
(This used to be commit ae2913898c983dcba69b5d0b89c428e450e9bf5f)
Diffstat (limited to 'source4/heimdal')
-rw-r--r-- | source4/heimdal/lib/hdb/keytab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/hdb/keytab.c b/source4/heimdal/lib/hdb/keytab.c index b4fa5f84c92..c87b8eca2c7 100644 --- a/source4/heimdal/lib/hdb/keytab.c +++ b/source4/heimdal/lib/hdb/keytab.c @@ -218,7 +218,7 @@ hdb_get_entry(krb5_context context, (*db->hdb_destroy)(context, db); return ret; } - ret = (*db->hdb_fetch)(context, db, principal, HDB_F_DECRYPT, &ent); + ret = (*db->hdb_fetch)(context, db, principal, HDB_F_DECRYPT|HDB_F_GET_CLIENT|HDB_F_GET_SERVER, &ent); /* Shutdown the hdb on error */ |