diff options
author | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2018-04-19 10:23:08 +0200 |
commit | db02ac8971379f9fee2f3a618bb08b8076d1a83d (patch) | |
tree | 0e7d46bad6162509300aa73ae6d77e571a5b26d0 /irc.c | |
parent | 6dc54671e368d03ed447d0fbd2d662af6c36b7fd (diff) | |
parent | 246b98bbdf221448fd7a638fea04373ed1612de5 (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'irc.c')
-rw-r--r-- | irc.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -141,9 +141,11 @@ irc_t *irc_new(int fd) if (isatty(irc->fd)) { irc_write(irc, ":%s NOTICE * :%s", irc->root->host, "If you read this, you most likely accidentally " - "started BitlBee in inetd mode on the command line. " - "You probably want to run it in (Fork)Daemon mode. " - "See doc/README for more information."); + "started BitlBee in inetd mode on the command line."); + irc_write(irc, ":%s NOTICE * :%s", irc->root->host, + "You probably want to run it as a system service, " + "or use (Fork)Daemon mode with the -F or -D switches. " + "See doc/README or 'man bitlbee' for more information."); } /* libpurple doesn't like fork()s after initializing itself, so this |