diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2012-04-17 22:53:35 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2012-04-20 17:12:27 +0200 |
commit | a48f3d156652cc241eb67fdf34041d1b7cdb71fb (patch) | |
tree | 9bf11e3bb970a98d7cc4267ce4337dc6ba1e01f7 /src/tmpfiles | |
parent | cc85759ac99cfff7c1daefadb9832a66c3d22b67 (diff) |
tmpfiles: fix error message
Diffstat (limited to 'src/tmpfiles')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 5db827eca2..d8fcb40155 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1291,8 +1291,8 @@ int main(int argc, char *argv[]) { "/usr/lib/tmpfiles.d", NULL); if (r < 0) { - r = EXIT_FAILURE; log_error("Failed to enumerate tmpfiles.d files: %s", strerror(-r)); + r = EXIT_FAILURE; goto finish; } |