[srvx-commits] CVS: services/src checkdb.c,1.10,1.11 expnhelp.c,1.6,1.7 globtest.c,1.5,1.6
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2002-11-22 04:30:51
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv5256/src
Modified Files:
checkdb.c expnhelp.c globtest.c
Log Message:
define more symbols so checkdb, expnhelp, globtest compile
flush expnhelp stderr after each log so you can actually see error messages
Index: checkdb.c
===================================================================
RCS file: /cvsroot/srvx/services/src/checkdb.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** checkdb.c 5 Sep 2002 14:57:23 -0000 1.10
--- checkdb.c 22 Nov 2002 04:30:48 -0000 1.11
***************
*** 4,8 ****
#include "timeq.h"
! int bad = 0;
/* because recdb likes to log stuff.. */
--- 4,9 ----
#include "timeq.h"
! int bad;
! const char *hidden_host_suffix;
/* because recdb likes to log stuff.. */
***************
*** 27,30 ****
--- 28,35 ----
void conf_register_reload(conf_reload_func crf) {
(void)crf;
+ }
+
+ void reg_exit_func(exit_func_t handler) {
+ (void)handler;
}
Index: expnhelp.c
===================================================================
RCS file: /cvsroot/srvx/services/src/expnhelp.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** expnhelp.c 14 Nov 2002 00:50:39 -0000 1.6
--- expnhelp.c 22 Nov 2002 04:30:48 -0000 1.7
***************
*** 10,16 ****
--- 10,18 ----
vfprintf(stderr, format, va);
va_end(va);
+ fflush(stderr);
}
struct string_list *new_argv;
+ const char *hidden_host_suffix;
struct cfg_scan {
Index: globtest.c
===================================================================
RCS file: /cvsroot/srvx/services/src/globtest.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** globtest.c 15 Aug 2002 02:49:26 -0000 1.5
--- globtest.c 22 Nov 2002 04:30:48 -0000 1.6
***************
*** 83,84 ****
--- 83,86 ----
va_end(va);
}
+
+ const char *hidden_host_suffix;
|