mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-23 07:12:56 -05:00
Move indented #defines to lh-column -- OSF4.0e does not allow the '#' to
be indented. Use "#<tab>define" instead.
This commit is contained in:
parent
f42e510e03
commit
1228f6defc
1 changed files with 6 additions and 6 deletions
|
|
@ -197,12 +197,12 @@ set_samedn (char *dn1, char *dn2)
|
||||||
int
|
int
|
||||||
set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results)
|
set_filter (SET_GATHER gatherer, void *cookie, char *filter, char *user, char *this, char ***results)
|
||||||
{
|
{
|
||||||
#define IS_SET(x) ( (long)(x) >= 256 )
|
# define IS_SET(x) ( (long)(x) >= 256 )
|
||||||
#define IS_OP(x) ( (long)(x) < 256 )
|
# define IS_OP(x) ( (long)(x) < 256 )
|
||||||
#define SF_ERROR(x) { rc = -1; goto _error; }
|
# define SF_ERROR(x) { rc = -1; goto _error; }
|
||||||
#define SF_TOP() (char **)( (stp < 0) ? 0 : stack[stp] )
|
# define SF_TOP() (char **)( (stp < 0) ? 0 : stack[stp] )
|
||||||
#define SF_POP() (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 SF_PUSH(x) { if (stp >= 63) SF_ERROR(overflow); stack[++stp] = (char **)(long)(x); }
|
||||||
char c;
|
char c;
|
||||||
char **set, **lset;
|
char **set, **lset;
|
||||||
int len, op, rc, stp;
|
int len, op, rc, stp;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue