[Autosec-devel] sonar/src plugin.c,1.31,1.32
Brought to you by:
red0x
From: red0x <re...@us...> - 2004-04-08 21:24:59
|
Update of /cvsroot/autosec/sonar/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13944/src Modified Files: plugin.c Log Message: Removed plugin_args function calls. plugin_args, and the old way of passing options, has *finally* been removed. Index: plugin.c =================================================================== RCS file: /cvsroot/autosec/sonar/src/plugin.c,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** plugin.c 8 Apr 2004 19:11:03 -0000 1.31 --- plugin.c 8 Apr 2004 21:11:48 -0000 1.32 *************** *** 305,312 **** log_write(LOG_DBUG, " %p (ok)\n", plug); ! /* only support from version 4 on up */ if(plug->version > API_VER || ! plug->version < 4) { log_write(LOG_CONSOLE | --- 305,312 ---- log_write(LOG_DBUG, " %p (ok)\n", plug); ! /* only support from version 6 on up */ if(plug->version > API_VER || ! plug->version < 6) { log_write(LOG_CONSOLE | *************** *** 616,619 **** --- 616,620 ---- in->iCount=1; in->bRandom=0; + in->bBroadcast=0; } |