From 1b02439b7ed87884a6539645b5ebc315f267acce Mon Sep 17 00:00:00 2001 From: Dmitry Degtyarev Date: Tue, 9 Jun 2020 16:29:27 +0400 Subject: [PATCH] fix entry_is_group var using is_user() --- src/ad_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ad_interface.cpp b/src/ad_interface.cpp index 9b57d181..dd8fd776 100644 --- a/src/ad_interface.cpp +++ b/src/ad_interface.cpp @@ -301,7 +301,7 @@ void AdInterface::move(const QString &dn, const QString &new_container) { const QByteArray new_container_array = new_container.toLatin1(); const char *new_container_cstr = new_container_array.constData(); - const bool entry_is_group = is_user(dn); + const bool entry_is_group = is_group(dn); const bool entry_is_user = is_user(dn); if (!entry_is_user && !entry_is_group) {