From 749ae5083c2c663eb10a985bf5c27b99c5247542 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 30 Jun 2010 13:18:42 +0200 Subject: English and message format fixes Signed-off-by: Denys Vlasenko --- src/Daemon/Daemon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Daemon/Daemon.cpp') diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp index 6c61d4df..02b8b96e 100644 --- a/src/Daemon/Daemon.cpp +++ b/src/Daemon/Daemon.cpp @@ -770,7 +770,7 @@ int main(int argc, char** argv) /* fall through to error */ default: error_msg_and_die( - "Usage: abrtd [-dv]\n" + "Usage: abrtd [-dsv] [-t SEC]\n" "\nOptions:" "\n\t-d\tDo not daemonize" "\n\t-s\tLog to syslog even with -d" @@ -797,7 +797,7 @@ int main(int argc, char** argv) pid_t pid = fork(); if (pid < 0) { - perror_msg_and_die("Can't fork"); + perror_msg_and_die("fork"); } if (pid > 0) { -- cgit