|
From: Bob T. <bt...@us...> - 2003-10-08 01:41:58
|
Update of /cvsroot/benson/benson3/include/benson In directory sc8-pr-cvs1:/tmp/cvs-serv23352/include/benson Modified Files: benson.h database.h Log Message: Here goes, lets see if this works over on unix now. Index: benson.h =================================================================== RCS file: /cvsroot/benson/benson3/include/benson/benson.h,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** benson.h 7 Oct 2003 01:11:54 -0000 1.23 --- benson.h 8 Oct 2003 01:41:51 -0000 1.24 *************** *** 32,35 **** --- 32,37 ---- #include "benson/cfgctl.h" + int sequence; + void safe_insert(char *d, char *s, int maxsize); void sig_int(int signal); Index: database.h =================================================================== RCS file: /cvsroot/benson/benson3/include/benson/database.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** database.h 28 Mar 2002 20:56:51 -0000 1.4 --- database.h 8 Oct 2003 01:41:51 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + #ifdef HAVE_DB_H #include <sys/types.h> *************** *** 25,26 **** --- 26,29 ---- int alert_net2db(bnet_req *net_alert, alertq *db_alert); int db_list_alerts(void *alertlist, int *ctr); + + #endif |