mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-12 15:10:31 +08:00
missing newlines bugfix from Dan.
This commit is contained in:
parent
ab37c7c8b4
commit
c63938a187
@ -44,15 +44,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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user