diff options
author | Michal Sekletar <msekleta@redhat.com> | 2014-02-24 15:59:29 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-02-24 16:48:32 +0100 |
commit | 3a3c71c19766c4330ef95b27c875907ec7fe2fd8 (patch) | |
tree | 3ad4f211e1a65f219b8eab8b1f4535f389f3eb94 | |
parent | 2d62c530d2b4c2730abff715b7342f1402114513 (diff) |
hostnamed: correct error message
We are not parsing timezone data.
-rw-r--r-- | src/hostname/hostnamed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hostname/hostnamed.c b/src/hostname/hostnamed.c index 0f2455b69c..6aa08cacb0 100644 --- a/src/hostname/hostnamed.c +++ b/src/hostname/hostnamed.c @@ -635,7 +635,7 @@ int main(int argc, char *argv[]) { r = context_read_data(&context); if (r < 0) { - log_error("Failed to read timezone data: %s", strerror(-r)); + log_error("Failed to read hostname and machine information: %s", strerror(-r)); goto finish; } |