diff options
author | Günther Deschner <gd@samba.org> | 2009-11-27 01:06:36 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-11-27 01:40:35 +0100 |
commit | 1a8f8382740e352a83133b8c49aaedd4716210cd (patch) | |
tree | 226332c76ea2fce0b6caa190647277ba58eb790c /source3/libsmb | |
parent | 49e464cef5ed75976fcd6c544bffbd4391f3a1b6 (diff) | |
download | samba-1a8f8382740e352a83133b8c49aaedd4716210cd.tar.gz samba-1a8f8382740e352a83133b8c49aaedd4716210cd.tar.bz2 samba-1a8f8382740e352a83133b8c49aaedd4716210cd.zip |
s3-kerberos: Fix Bug #6929: build with recent heimdal.
Heimdal changed the KRB5_DEPRECATED define (which now may not take an identifier
for activation) in new releases (like 1.3.1).
Guenther
Diffstat (limited to 'source3/libsmb')
-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 3da64d60c2..3dc8c64ba9 100644 --- a/source3/libsmb/clikrb5.c +++ b/source3/libsmb/clikrb5.c @@ -21,7 +21,7 @@ */ #define KRB5_PRIVATE 1 /* this file uses PRIVATE interfaces! */ -#define KRB5_DEPRECATED 1 /* this file uses DEPRECATED interfaces! */ +/* this file uses DEPRECATED interfaces! */ #include "includes.h" |