mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
ITS#352: don't pring NULL group names.
This commit is contained in:
parent
a5dad347c2
commit
5f6f7d06a6
@ -215,9 +215,9 @@ remove_group( char *name )
|
||||
if ((dn = bind_and_fetch(name)) == NULL)
|
||||
return;
|
||||
|
||||
printf("\n The group '%s' will be permanently removed from\n",
|
||||
name);
|
||||
printf(" the Directory. Are you absolutely sure that you want to\n" ); printf(" remove this entire group? ");
|
||||
printf("\n The entry\n '%s'\n will be permanently removed from", dn);
|
||||
printf(" the Directory.\n Are you absolutely sure that you want to" );
|
||||
printf(" remove this entire group? ");
|
||||
fflush(stdout);
|
||||
fetch_buffer(tmp, sizeof(tmp), stdin);
|
||||
if (!(tmp[0] == 'y' || tmp[0] == 'Y'))
|
||||
@ -230,7 +230,7 @@ remove_group( char *name )
|
||||
int ld_errno = 0;
|
||||
ldap_get_option(ld, LDAP_OPT_ERROR_NUMBER, &ld_errno);
|
||||
if (ld_errno == LDAP_INSUFFICIENT_ACCESS)
|
||||
printf(" You do not own the group \"%s\".\n", name);
|
||||
printf(" You do not own the entry\n\t\"%s\".\n", dn);
|
||||
else
|
||||
ldap_perror(ld, " ldap_delete_s");
|
||||
printf(" Group not removed.\n");
|
||||
|
Loading…
Reference in New Issue
Block a user