backport: don't use #ifdef inside htons() arguments - it can be a macro.

This commit is contained in:
Oswald Buddenhagen 2007-09-22 08:49:05 +00:00
parent 0d27c5f4cb
commit 5d03247bec

View File

@ -1244,11 +1244,11 @@ imap_open_store( store_conf_t *conf, store_t *oldctx )
info( "ok\n" );
} else {
memset( &addr, 0, sizeof(addr) );
addr.sin_port = htons( srvc->port ? srvc->port :
addr.sin_port = srvc->port ? htons( srvc->port ) :
#ifdef HAVE_LIBSSL
srvc->use_imaps ? 993 :
srvc->use_imaps ? htons( 993 ) :
#endif
143 );
htons( 143 );
addr.sin_family = AF_INET;
info( "Resolving %s... ", srvc->host );