X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fslapadd.c;h=898f0347a1c1e14c37543ec0acaed3040aa3b944;hb=5747896ba081ff998fd97863de26d2f4af59bbd2;hp=11cf55f371a93a12a7b458070c4d9120079a2421;hpb=c51a71e5c2b01f591d187fd0733463037e248b80;p=openldap diff --git a/servers/slapd/slapadd.c b/servers/slapd/slapadd.c index 11cf55f371..898f0347a1 100644 --- a/servers/slapd/slapadd.c +++ b/servers/slapd/slapadd.c @@ -62,7 +62,7 @@ slapadd( int argc, char **argv ) int match; int ret; int checkvals; - int lineno; + int lineno, nextline; int lmax; int rc = EXIT_SUCCESS; int manage = 0; @@ -71,6 +71,7 @@ slapadd( int argc, char **argv ) memset( &opbuf, 0, sizeof(opbuf) ); op = (Operation *) &opbuf; + op->o_hdr = (Opheader *)(op+1); if( !be->be_entry_open || !be->be_entry_close || @@ -93,7 +94,7 @@ slapadd( int argc, char **argv ) checkvals = (slapMode & SLAP_TOOL_QUICK) ? 0 : 1; lmax = 0; - lineno = 0; + nextline = 0; if( !dryrun && be->be_entry_open( be, 1 ) != 0 ) { fprintf( stderr, "%s: could not open database.\n", @@ -106,8 +107,15 @@ slapadd( int argc, char **argv ) maxcsn.bv_len = 0; } - while( ldif_read_record( ldiffp, &lineno, &buf, &lmax ) ) { - Entry *e = str2entry2( buf, checkvals ); + /* nextline is the line number of the end of the current entry */ + for( lineno=1; ldif_read_record( ldiffp, &nextline, &buf, &lmax ); + lineno=nextline+1 ) { + Entry *e; + + if ( lineno < jumpline ) + continue; + + e = str2entry2( buf, checkvals ); /* * Initialize text buffer @@ -156,8 +164,6 @@ slapadd( int argc, char **argv ) } { - Attribute *sc = attr_find( e->e_attrs, - slap_schema.si_ad_structuralObjectClass ); Attribute *oc = attr_find( e->e_attrs, slap_schema.si_ad_objectClass ); @@ -171,30 +177,11 @@ slapadd( int argc, char **argv ) break; } - if( sc == NULL ) { - struct berval val; - - rc = structural_class( oc->a_vals, &val, - NULL, &text, textbuf, textlen ); - - if( rc != LDAP_SUCCESS ) { - fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n", - progname, e->e_dn, lineno, rc, text ); - rc = EXIT_FAILURE; - entry_free( e ); - if( continuemode ) continue; - break; - } - - attr_merge_one( e, slap_schema.si_ad_structuralObjectClass, - &val, NULL ); - } - /* check schema */ op->o_bd = be; if ( (slapMode & SLAP_TOOL_NO_SCHEMA_CHECK) == 0) { - rc = entry_schema_check( op, e, NULL, manage, + rc = entry_schema_check( op, e, NULL, manage, 1, &text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) {