aboutsummaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2000-07-31 16:47:35 +0800
committerkevlo <kevlo@FreeBSD.org>2000-07-31 16:47:35 +0800
commit51df7a6c07fd69470fe70c874fbbe7c436f6c0f6 (patch)
tree2d202881fb6f813789090a32c395a18629d47abe /irc
parent91bcf2943589db0a03f5258de32f6ae1a91ac07a (diff)
downloadfreebsd-ports-gnome-51df7a6c07fd69470fe70c874fbbe7c436f6c0f6.tar.gz
freebsd-ports-gnome-51df7a6c07fd69470fe70c874fbbe7c436f6c0f6.tar.zst
freebsd-ports-gnome-51df7a6c07fd69470fe70c874fbbe7c436f6c0f6.zip
The startup script provided with the irc/ircd-hybrid port is missing
a ";;" to close a 'case' statement entry. PR: 20302 Submitted by: Peter Pentchev <roam@orbitel.bg>
Diffstat (limited to 'irc')
-rw-r--r--irc/ircd-hybrid/files/ircd.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/irc/ircd-hybrid/files/ircd.sh b/irc/ircd-hybrid/files/ircd.sh
index 9fb77f36bb4d..0eb649081033 100644
--- a/irc/ircd-hybrid/files/ircd.sh
+++ b/irc/ircd-hybrid/files/ircd.sh
@@ -5,6 +5,7 @@ start)
[ -x /usr/local/sbin/ircd ] \
&& /usr/local/sbin/ircd >/dev/null 2>&1 \
&& echo -n " ircd"
+ ;;
stop)
killall ircd && echo -n ' ircd'
;;