diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-06-22 15:35:52 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-06-22 15:35:52 +0200 |
commit | f6cf644e5f7da4a0391b10fb31b4b4661c5439dc (patch) | |
tree | e76cad9ff0a326efb9035ffa956dd2426d6681eb /src/libutil | |
parent | bbe7187db99ee46691e87e8eb8baded850cc3035 (diff) |
Style
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index a368ac844..aabd23427 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -580,7 +580,7 @@ Path getHome() int result = stat(homeDir->c_str(), &st); if (result != 0) { if (errno != ENOENT) { - warn("Couldn't stat $HOME ('%s') for reason other than not existing ('%d'), falling back to the one defined in the 'passwd' file", *homeDir, errno); + warn("couldn't stat $HOME ('%s') for reason other than not existing ('%d'), falling back to the one defined in the 'passwd' file", *homeDir, errno); homeDir.reset(); } } else if (st.st_uid != geteuid()) { |