repo: ngircd
action: commit
revision: 
path_from: 
revision_from: d8ee498a65aa86222c4ed1ffa05bf8d822aed6fd:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit d8ee498a65aa86222c4ed1ffa05bf8d822aed6fd
Author: Federico G. Schwindt 
Date:   Wed Sep 26 13:13:10 2012 +0100

    Send RPL_REHASHING if rehash was accepted

    (cherry picked from commit f1b171a09cd076f743a7fff221fa7aa752abb374)

diff --git a/src/ngircd/irc-oper.c b/src/ngircd/irc-oper.c
index 21577f00438956992141cf6c255767763fcdd409..
index ..237107f69b8f56c828f212122da415cee247ba1b 100644
--- a/src/ngircd/irc-oper.c
+++ b/src/ngircd/irc-oper.c
@@ -183,6 +183,8 @@ IRC_REHASH( CLIENT *Client, REQUEST *Req )

 	Log(LOG_NOTICE|LOG_snotice, "Got REHASH command from \"%s\" ...",
 	    Client_Mask(Client));
+	IRC_WriteStrClient(Client, RPL_REHASHING_MSG, Client_ID(Client));
+
 	raise(SIGHUP);

 	return CONNECTED;
diff --git a/src/ngircd/messages.h b/src/ngircd/messages.h
index d99930faa5d079995932ba3140d207c08e20e5c9..
index ..f9140a4b8b6e2fea2dba0450735247f07b9e1ecb 100644
--- a/src/ngircd/messages.h
+++ b/src/ngircd/messages.h
@@ -94,6 +94,7 @@
 #define RPL_ENDOFMOTD_MSG		"376 %s :End of MOTD command"
 #define RPL_WHOISHOST_MSG		"378 %s %s :is connecting from *@%s %s"
 #define RPL_YOUREOPER_MSG		"381 %s :You are now an IRC Operator"
+#define RPL_REHASHING_MSG		"382 %s :Rehashing"
 #define RPL_YOURESERVICE_MSG		"383 %s :You are service %s"
 #define RPL_TIME_MSG			"391 %s %s :%s"
 #define RPL_HOSTHIDDEN_MSG		"396 %s %s :is your displayed hostname now"

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