repo: ngircd
action: commit
revision: 
path_from: 
revision_from: a1ce3fc779c66f1febcc4c861cfd593a1ab48002:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit a1ce3fc779c66f1febcc4c861cfd593a1ab48002
Author: Alexander Barton 
Date:   Thu Aug 27 00:10:18 2015 +0200

    ngircd.init: Fix non-POSIX "==" test operator

diff --git a/contrib/Debian/ngircd.init b/contrib/Debian/ngircd.init
index 5c8c46cab82341f20f3d02a20449299db98911f5..
index ..8127e8fddef192ca57a46f7f6a7f26010193eb60 100755
--- a/contrib/Debian/ngircd.init
+++ b/contrib/Debian/ngircd.init
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # ngIRCd start and stop script for Debian-based systems
-# Copyright 2008-2013 Alexander Barton 
+# Copyright 2008-2015 Alexander Barton 
 #

 ### BEGIN INIT INFO
@@ -37,7 +37,7 @@ log_daemon_msg() {
 	echo -n "$*"
 }
 log_end_msg() {
-	[ "$1" == "0" ] && echo "." || echo " failed!"
+	[ "$1" = "0" ] && echo "." || echo " failed!"
 }
 log_failure_msg() {
 	echo "$*"

-----END OF PAGE-----