Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_groupsystem.cpp
blobdd9525e8efbc972aa5554d0710803b985c503548
1 /*
2 * Copyright (c) 1998 Denis Perchine <dyp@perchine.com>
3 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * Former maintainer: Adriaan de Groot <groot@kde.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
20 **/
22 #include "ku_groupsystem.h"
24 #include <errno.h>
25 #include <grp.h>
27 #include <kdebug.h>
29 #include "ku_misc.h"
31 KU_GroupSystem::KU_GroupSystem( KU_PrefsBase *cfg ) : KU_Groups( cfg )
33 caps = Cap_ReadOnly | Cap_Passwd;
36 KU_GroupSystem::~KU_GroupSystem()
40 bool KU_GroupSystem::reload()
42 struct group *p;
43 KU_Group group;
45 setgrent();
46 while ((p = getgrent()) != NULL) {
47 group.setGID(p->gr_gid);
48 group.setName(QString::fromLocal8Bit(p->gr_name));
49 group.setPwd(QString::fromLocal8Bit(p->gr_passwd));
51 char *u_name;
52 int i = 0;
53 while ((u_name = p->gr_mem[i])!=0) {
54 group.addUser(QString::fromLocal8Bit(u_name));
55 i++;
58 append(group);
59 group = KU_Group();
62 endgrent();
63 return true;