[srvx-commits] CVS: services/src helpfile.c,1.51,1.52
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-08-04 13:54:03
|
Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv20219/src
Modified Files:
helpfile.c
Log Message:
make $s use self->name rather than looking things up in conf all the time
Index: helpfile.c
===================================================================
RCS file: /cvsroot/srvx/services/src/helpfile.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -r1.51 -r1.52
*** helpfile.c 30 Jul 2002 02:15:11 -0000 1.51
--- helpfile.c 4 Aug 2002 13:53:59 -0000 1.52
***************
*** 19,26 ****
*/
- #include "conf.h"
#include "helpfile.h"
#include "log.h"
#include "nickserv.h"
#define DEFAULT_LINE_SIZE MAX_LINE_SIZE
--- 19,26 ----
*/
#include "helpfile.h"
#include "log.h"
#include "nickserv.h"
+ #include "recdb.h"
#define DEFAULT_LINE_SIZE MAX_LINE_SIZE
***************
*** 297,301 ****
break;
case 's':
! value = (char*)conf_server_name();
break;
case 'H':
--- 297,301 ----
break;
case 's':
! value = self->name;
break;
case 'H':
|