]> git.sur5r.net Git - openldap/commitdiff
Enclose CEILING/STRDUP macro args in ()
authorHallvard Furuseth <hallvard@openldap.org>
Thu, 29 Apr 1999 23:30:01 +0000 (23:30 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Thu, 29 Apr 1999 23:30:01 +0000 (23:30 +0000)
clients/tools/ldappasswd.c

index 133ed43338183af9fa4217397b1a4db5d916556e..fad4c106db3ceb0f63d142c340757122fd2f9c89 100644 (file)
@@ -33,8 +33,8 @@
 #include "ldapconfig.h"
 
 /* local macros */
-#define CEILING(x)     ((double)x > (int)x ? (int)x + 1 : (int)x)
-#define STRDUP(x)      (x ? strcpy(malloc(strlen(x) + 1), x) : NULL)
+#define CEILING(x)     ((double)(x) > (int)(x) ? (int)(x) + 1 : (int)(x))
+#define STRDUP(x)      ((x) ? strcpy(malloc(strlen(x) + 1), x) : NULL)
 
 #define LDAP_PASSWD_ATTRIB "userPassword"
 #define LDAP_PASSWD_CONF   DEFAULT_SYSCONFDIR"/passwd.conf"