summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2003-02-18 20:57:29 +0000
committerJim McDonough <jmcd@samba.org>2003-02-18 20:57:29 +0000
commitd08116ffcbe51c51c338f044e4f9389d3e4c10d5 (patch)
treea60b55c1b866d8d053bda9c31410646d4ea074d3 /source3
parent185d858dd2161a42cc35d318415844561531f4a4 (diff)
downloadsamba-d08116ffcbe51c51c338f044e4f9389d3e4c10d5.tar.gz
samba-d08116ffcbe51c51c338f044e4f9389d3e4c10d5.tar.bz2
samba-d08116ffcbe51c51c338f044e4f9389d3e4c10d5.zip
Sync w/HEAD - add DES_CBC_CRC encryption type
(This used to be commit c7934f5cb56d54a90c9ffdbe2f7429a3c9227abe)
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/clikrb5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c
index 203d9d874b..e380d80bcc 100644
--- a/source3/libsmb/clikrb5.c
+++ b/source3/libsmb/clikrb5.c
@@ -278,6 +278,7 @@ DATA_BLOB krb5_get_ticket(const char *principal, time_t time_offset)
ENCTYPE_ARCFOUR_HMAC,
#endif
ENCTYPE_DES_CBC_MD5,
+ ENCTYPE_DES_CBC_CRC,
ENCTYPE_NULL};
retval = krb5_init_context(&context);
@@ -324,7 +325,6 @@ failed:
return data_blob(NULL, 0);
}
-
#else /* HAVE_KRB5 */
/* this saves a few linking headaches */
DATA_BLOB krb5_get_ticket(const char *principal, time_t time_offset)