summaryrefslogtreecommitdiff
path: root/noncore/settings/usermanager/passwd.cpp
Unidiff
Diffstat (limited to 'noncore/settings/usermanager/passwd.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/usermanager/passwd.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/settings/usermanager/passwd.cpp b/noncore/settings/usermanager/passwd.cpp
index 1e98778..f8e6d17 100644
--- a/noncore/settings/usermanager/passwd.cpp
+++ b/noncore/settings/usermanager/passwd.cpp
@@ -209,7 +209,12 @@ bool Passwd::searchGroup(QRegExp &groupRegExp) {
209 } else { 209 } else {
210 groupString=(*(tempStringList.begin())); 210 for(QStringList::Iterator it=tempStringList.begin(); it!=tempStringList.end(); it++) {
211 groupString=*it;
212 if(!groupString.find(QRegExp("^#"),0)) {// Skip commented lines.
211 splitGroupEntry(groupString); 213 splitGroupEntry(groupString);
212 }
213 return true; 214 return true;
214} 215}
216 }
217 }
218 return false;
219}
215 220