diff options
author | foobar <sniper@php.net> | 2003-01-24 10:12:55 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-01-24 10:12:55 +0000 |
commit | 4dfc7cc87c6c847f0027e207b58fb827dd293e79 (patch) | |
tree | 3c896894ee987c116b199a93586aed3977223e20 /ext/imap | |
parent | e771bdb23dfdb36aff8f18089a09be39de36b180 (diff) | |
download | php-git-4dfc7cc87c6c847f0027e207b58fb827dd293e79.tar.gz |
- Fixed stupid typo..
# I will test before commit, I will test before commit...
Diffstat (limited to 'ext/imap')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 67d083df6b..ca315598b5 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -418,7 +418,7 @@ PHP_MINIT_FUNCTION(imap) #ifndef PHP_WIN32 auth_link(&auth_log); /* link in the log authenticator */ auth_link(&auth_md5); /* link in the cram-md5 authenticator */ -#ifdef HAVE_IMAP_KRB && defined(HAVE_IMAP_AUTH_GSS) +#if HAVE_IMAP_KRB && defined(HAVE_IMAP_AUTH_GSS) auth_link(&auth_gss); /* link in the gss authenticator */ #endif |