]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Fix missing newline bug in modify. Imported from rel_eng_1_1
authorKurt Zeilenga <kurt@openldap.org>
Sat, 5 Dec 1998 02:28:06 +0000 (02:28 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 5 Dec 1998 02:28:06 +0000 (02:28 +0000)
servers/slapd/back-shell/modify.c

index d05b79639df7f024d2c95461e996608f6aefa6fe..ee5044af3ccc59d5eb0411ce5c2033ca7a763c21 100644 (file)
@@ -41,15 +41,15 @@ shell_back_modify(
        for ( ; mods != NULL; mods = mods->mod_next ) {
                switch ( mods->mod_op & ~LDAP_MOD_BVALUES ) {
                case LDAP_MOD_ADD:
-                       fprintf( wfp, "add: %s", mods->mod_type );
+                       fprintf( wfp, "add: %s\n", mods->mod_type );
                        break;
 
                case LDAP_MOD_DELETE:
-                       fprintf( wfp, "delete: %s", mods->mod_type );
+                       fprintf( wfp, "delete: %s\n", mods->mod_type );
                        break;
 
                case LDAP_MOD_REPLACE:
-                       fprintf( wfp, "replace: %s", mods->mod_type );
+                       fprintf( wfp, "replace: %s\n", mods->mod_type );
                        break;
                }