]> git.sur5r.net Git - openldap/commitdiff
ITS#1828: fix SB_MAX_INCOMING macros
authorKurt Zeilenga <kurt@openldap.org>
Thu, 6 Jun 2002 03:39:53 +0000 (03:39 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 6 Jun 2002 03:39:53 +0000 (03:39 +0000)
servers/slapd/proto-slap.h

index 1876c11426ab3d566388673a6141c428050ad4b5..a6d120ea2522f0d239c901925c05a280519cca2b 100644 (file)
@@ -777,8 +777,8 @@ LDAP_SLAPD_F (int)  krbv4_ldap_auth();
 /*
  * Other...
  */
-#define SLAP_SB_MAX_INCOMING_DEFAULT (1<<18 - 1)
-#define SLAP_SB_MAX_INCOMING_AUTH (1<<24 - 1)
+#define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
+#define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)
 
 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming;
 LDAP_SLAPD_F (ber_len_t) sockbuf_max_incoming_auth;