diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-16 16:15:09 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-16 16:15:09 +0000 |
commit | 3681b6d8349c6cf646383c27657b87d742a1abc2 (patch) | |
tree | 40ec0f8aed6be54487d1442ea36bdbbeb4edf839 | |
parent | 2db88fcaf25e6cfb37aa33fb7478676c3d30889f (diff) |
BUILD : 1.7.16 (1176) BUGS : 611 NOTES : Fixed anoperc restart to allow arguments like anoperc start
git-svn-id: svn://svn.anope.org/anope/trunk@1176 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@897 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/bin/anoperc.in | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -3,6 +3,7 @@ Anope Version S V N 10/15 F MySQL detection now checks for valid values from mysql_config. [ #00] 10/15 F Correctly compiling mod_version with module options now. [ #00] 10/16 F MySQL functions did not always escape all values correctly. [#612] +10/16 F Made anoperc restart to accepts arguments like anoperc start. [#611] Anope Version 1.7.16 -------------------- diff --git a/src/bin/anoperc.in b/src/bin/anoperc.in index 0fdb8c40c..f1e9def49 100644 --- a/src/bin/anoperc.in +++ b/src/bin/anoperc.in @@ -100,7 +100,7 @@ elif [ "$1" = "restart" ] ; then echo "Restarting Anope" kill -15 `cat $ANOPEPID` sleep 1 - $ANOPROG + $ANOPROG $* elif [ "$1" = "rehash" ] ; then isAnopeRunning diff --git a/version.log b/version.log index e4b513d44..7956324d6 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="16" VERSION_EXTRA="-svn" -VERSION_BUILD="1175" +VERSION_BUILD="1176" # $Log$ # +# BUILD : 1.7.16 (1176) +# BUGS : 611 +# NOTES : Fixed anoperc restart to allow arguments like anoperc start +# # BUILD : 1.7.16 (1175) # BUGS : 612 # NOTES : Fixed a number of MySQL/RDB-related functions which did not correctly escape their arguments |