]> git.sur5r.net Git - openldap/commitdiff
Move indented #defines to lh-column -- OSF4.0e does not allow the '#' to
authorRandy Kunkee <kunkee@openldap.org>
Wed, 19 Jul 2000 10:04:09 +0000 (10:04 +0000)
committerRandy Kunkee <kunkee@openldap.org>
Wed, 19 Jul 2000 10:04:09 +0000 (10:04 +0000)
be indented.  Use "#<tab>define" instead.

servers/slapd/sets.c

index 0fdec47ee2b783b10ce554f3c5c74007d8472f67..be0a60263e81c8b7507e3f1d9a7d2338d22ff01f 100644 (file)
@@ -197,12 +197,12 @@ set_samedn (char *dn1, char *dn2)
 int
 set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results)
 {
-       #define IS_SET(x)       ( (long)(x) >= 256 )
-       #define IS_OP(x)        ( (long)(x) < 256 )
-       #define SF_ERROR(x)     { rc = -1; goto _error; }
-       #define SF_TOP()        (char **)( (stp < 0) ? 0 : stack[stp] )
-       #define SF_POP()        (char **)( (stp < 0) ? 0 : stack[stp--] )
-       #define SF_PUSH(x)      { if (stp >= 63) SF_ERROR(overflow); stack[++stp] = (char **)(long)(x); }
+#      define IS_SET(x)        ( (long)(x) >= 256 )
+#      define IS_OP(x) ( (long)(x) < 256 )
+#      define SF_ERROR(x)      { rc = -1; goto _error; }
+#      define SF_TOP() (char **)( (stp < 0) ? 0 : stack[stp] )
+#      define SF_POP() (char **)( (stp < 0) ? 0 : stack[stp--] )
+#      define SF_PUSH(x)       { if (stp >= 63) SF_ERROR(overflow); stack[++stp] = (char **)(long)(x); }
        char c;
        char **set, **lset;
        int len, op, rc, stp;