diff options
author | Michael Adam <obnox@samba.org> | 2007-05-15 23:05:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:08 -0500 |
commit | 074af4b39d12312fc376e8d2f7bf84f0fd830874 (patch) | |
tree | e805f336f9f4237e85775b2fdbf89bf4d4bbd909 | |
parent | e2dc669cda3f2173bab19ffb9f76d6b904d8c7e3 (diff) | |
download | samba-074af4b39d12312fc376e8d2f7bf84f0fd830874.tar.gz samba-074af4b39d12312fc376e8d2f7bf84f0fd830874.tar.bz2 samba-074af4b39d12312fc376e8d2f7bf84f0fd830874.zip |
r22919: Fix build on Tru64.
(This used to be commit a7d992545bf7422ec2dc45c402b45e7e068cec94)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0c69dde7d6..26fdba0dfb 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4052,7 +4052,7 @@ if test x"$with_ads_support" != x"no"; then AC_TRY_RUN_STRICT([ #include <krb5.h> int main(void) { - krb5_context context; + krb5_context context = NULL; char *str = NULL; krb5_enctype_to_string(context, 1, &str); if (str) free (str); |