diff options
author | Michael Adam <obnox@samba.org> | 2011-05-10 20:54:06 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-10 20:54:06 +0200 |
commit | 0791da4fdd75bca6cb4fae670fac4fc5527ab079 (patch) | |
tree | 3a4a8cbfd82ac7262b53c2efc9f7fff7703c5a71 | |
parent | 419e03ab18696984303abfb44f05e58c14ba25ae (diff) | |
download | samba-0791da4fdd75bca6cb4fae670fac4fc5527ab079.tar.gz samba-0791da4fdd75bca6cb4fae670fac4fc5527ab079.tar.bz2 samba-0791da4fdd75bca6cb4fae670fac4fc5527ab079.zip |
lib/replace: fix an #if HAVE_GSSAPI_GSSAPI_EXT_H to be an #ifdef
-rw-r--r-- | lib/replace/system/kerberos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/system/kerberos.h b/lib/replace/system/kerberos.h index ec3eff17c7..7762d4be46 100644 --- a/lib/replace/system/kerberos.h +++ b/lib/replace/system/kerberos.h @@ -37,7 +37,7 @@ #include <com_err.h> #endif -#if HAVE_GSSAPI_GSSAPI_EXT_H +#ifdef HAVE_GSSAPI_GSSAPI_EXT_H #include <gssapi/gssapi_ext.h> #elif HAVE_GSSAPI_GSSAPI_H #include <gssapi/gssapi.h> |