diff options
author | Tim Potter <tpot@samba.org> | 2002-09-18 01:40:13 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-18 01:40:13 +0000 |
commit | 7e29a2ec1d7d86225cca4b02af28805a412da124 (patch) | |
tree | 753fc5d098881741d63092074e6e80168ab100f6 /source3/libsmb/clikrb5.c | |
parent | 8b4bafc76fab88d78b7234c43c34338b61d42656 (diff) | |
download | samba-7e29a2ec1d7d86225cca4b02af28805a412da124.tar.gz samba-7e29a2ec1d7d86225cca4b02af28805a412da124.tar.bz2 samba-7e29a2ec1d7d86225cca4b02af28805a412da124.zip |
Fixed compiler error when HAVE_KRB5 not defined.
(This used to be commit 66c2e25079b348188abd48868300771b1e49fff3)
Diffstat (limited to 'source3/libsmb/clikrb5.c')
-rw-r--r-- | source3/libsmb/clikrb5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c index 22bfdc0463..e7143d065d 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -154,7 +154,7 @@ failed: #else /* HAVE_KRB5 */ /* this saves a few linking headaches */ - DATA_BLOB krb5_get_ticket(char *principal) + DATA_BLOB krb5_get_ticket(char *principal, time_t time_offset) { DEBUG(0,("NO KERBEROS SUPPORT\n")); return data_blob(NULL, 0); |