summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Daemon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/Daemon.cpp')
-rw-r--r--src/Daemon/Daemon.cpp4
1 files changed, 2 insertions, 2 deletions
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)
{