/*
- * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2017 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
}
}
- if (host == NULL
- || base_dn == NULL
- || users_ou == NULL
- || groups_ou == NULL
- || user_field == NULL)
+ if (host == NULL)
+ {
+ g_warning ("Missing host parameter.");
+ return NULL;
+ }
+ if (base_dn == NULL)
+ {
+ g_warning ("Missing base_dn parameter.");
+ return NULL;
+ }
+ if (users_ou == NULL)
+ {
+ g_warning ("Missing users_ou parameter.");
+ return NULL;
+ }
+ if (groups_ou == NULL)
+ {
+ g_warning ("Missing groups_ou parameter.");
+ return NULL;
+ }
+ if (user_field == NULL)
{
- g_warning ("Missing some parameters.");
+ g_warning ("Missing user_field parameter.");
return NULL;
}