diff options
author | Tom Gundersen <teg@jklm.no> | 2011-08-18 23:56:08 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-08-18 23:56:08 +0200 |
commit | a5967ed214a194b54647342f38ae78d695d497a1 (patch) | |
tree | 8f008e140b5bc782c54201edd0456aea4971c7de | |
parent | 4ef7a256acddfdd0cbb54e9018f0d8fadbc0cae1 (diff) |
functions: fix typo in warning message
Fixes #25623.
Reported-by: Segej Puykin <arch@sergej.pp.ru>
Signed-off-by: Tom Gundersen <teg@jklm.no>
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" if [[ $1 == "start" ]]; then if [[ $STARTING ]]; then - echo "A daemon is starting another daemon, this is unlikely to work as intended.\n" + echo "A daemon is starting another daemon, this is unlikely to work as intended." else export STARTING=1 fi |