]> git.sur5r.net Git - openldap/commitdiff
ITS#4078 fix buffer alignment
authorHoward Chu <hyc@openldap.org>
Wed, 12 Oct 2005 17:34:06 +0000 (17:34 +0000)
committerHoward Chu <hyc@openldap.org>
Wed, 12 Oct 2005 17:34:06 +0000 (17:34 +0000)
servers/slapd/slapadd.c

index 23d3c0b2af7e9de1a39808d9a2445e90355e5b6d..b36208fdbe91f26ef6d99308293b1be7947e2cbb 100644 (file)
@@ -44,28 +44,28 @@ static char maxcsnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
 int
 slapadd( int argc, char **argv )
 {
-       char            *buf = NULL;
-       int         lineno;
-       int         lmax;
-       int                     rc = EXIT_SUCCESS;
-
+       char *buf = NULL;
        const char *text;
        char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
        size_t textlen = sizeof textbuf;
        const char *progname = "slapadd";
-       int manage = 0; 
 
        struct berval csn;
        struct berval maxcsn;
-       int match;
+       struct berval bvtext;
        Attribute *attr;
        Entry *ctxcsn_e;
        ID      ctxcsn_id, id;
+       Operation *op;
+       char opbuf[OPERATION_BUFFER_SIZE];
+
+       int match;
        int ret;
-       struct berval bvtext;
        int checkvals;
-       char opbuf[OPERATION_BUFFER_SIZE];
-       Operation *op;
+       int lineno;
+       int lmax;
+       int rc = EXIT_SUCCESS;
+       int manage = 0; 
 
        slap_tool_init( progname, SLAPADD, argc, argv );