summaryrefslogtreecommitdiff
path: root/irc
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2000-07-31 08:47:35 +0000
committerKevin Lo <kevlo@FreeBSD.org>2000-07-31 08:47:35 +0000
commitbc1c3dd7090f1b9f4a1730d32d1ec4f5253c227e (patch)
tree81874dcde167be07f993228e17105dd4d57f1a83 /irc
parentUpdate MASTER_SITES (diff)
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>
Notes
Notes: svn path=/head/; revision=31148
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'
;;