diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-01-19T14·15+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-01-19T16·06+0100 |
commit | 63e10b4d28e64107e51207f292ab0093a95c1bc6 (patch) | |
tree | 59dfc4d74f12619dbb195aefc16447133b8ddac5 /src/libutil/util.hh | |
parent | 2579e32c2bf47a483b823fdf12f0ff66ecaf1b95 (diff) |
Cleanup
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 052173ff9976..67d2891688a2 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -218,11 +218,10 @@ void killUser(uid_t uid); pid to the caller. */ struct ProcessOptions { - string errorPrefix; - bool dieWithParent; - bool runExitHandlers; - bool allowVfork; - ProcessOptions() : errorPrefix("error: "), dieWithParent(true), runExitHandlers(false), allowVfork(true) { }; + string errorPrefix = "error: "; + bool dieWithParent = true; + bool runExitHandlers = false; + bool allowVfork = true; }; pid_t startProcess(std::function<void()> fun, const ProcessOptions & options = ProcessOptions()); |