aboutsummaryrefslogtreecommitdiff
path: root/sdn.cpp
diff options
context:
space:
mode:
authorPřemysl Janouch <p@janouch.name>2018-12-03 00:11:00 +0100
committerPřemysl Janouch <p@janouch.name>2018-12-03 00:11:00 +0100
commit4a2a49312b6c33bd73d338ca2744ab66a5cb7a6e (patch)
tree1019d114e42915b281fc02edd6dec145439f5b17 /sdn.cpp
parent7174b507d3fab2842143a7e58b87e44fe91009b2 (diff)
downloadsdn-4a2a49312b6c33bd73d338ca2744ab66a5cb7a6e.tar.gz
sdn-4a2a49312b6c33bd73d338ca2744ab66a5cb7a6e.tar.xz
sdn-4a2a49312b6c33bd73d338ca2744ab66a5cb7a6e.zip
Fix formatting
Diffstat (limited to 'sdn.cpp')
-rw-r--r--sdn.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/sdn.cpp b/sdn.cpp
index fd78a26..0a5f2ee 100644
--- a/sdn.cpp
+++ b/sdn.cpp
@@ -743,11 +743,13 @@ fun operator< (const entry &e1, const entry &e2) -> bool {
fun reload () {
g.unames.clear();
- while (auto *ent = getpwent ()) g.unames.emplace(ent->pw_uid, ent->pw_name);
+ while (auto *ent = getpwent ())
+ g.unames.emplace (ent->pw_uid, ent->pw_name);
endpwent();
g.gnames.clear();
- while (auto *ent = getgrent ()) g.gnames.emplace(ent->gr_gid, ent->gr_name);
+ while (auto *ent = getgrent ())
+ g.gnames.emplace (ent->gr_gid, ent->gr_name);
endgrent();
string anchor;