summaryrefslogtreecommitdiffstats
path: root/ulogd/ulogd.c
diff options
context:
space:
mode:
authorlaforge <laforge>2002-07-30 07:23:36 +0000
committerlaforge <laforge>2002-07-30 07:23:36 +0000
commitaf77b68aa1297cac949ff7260efebc1a7bf41acf (patch)
treec3877411ee8ca10f32595367d895cb3435d127ee /ulogd/ulogd.c
parent04004d5b08a271cee71da169fdc2b8a376c2cb0a (diff)
print version number after startup
Diffstat (limited to 'ulogd/ulogd.c')
-rw-r--r--ulogd/ulogd.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/ulogd/ulogd.c b/ulogd/ulogd.c
index e2564bf..9e399ee 100644
--- a/ulogd/ulogd.c
+++ b/ulogd/ulogd.c
@@ -1,6 +1,6 @@
-/* ulogd, Version $Revision: 1.26 $
+/* ulogd, Version $Revision: 1.27 $
*
- * $Id: ulogd.c,v 1.26 2002/07/30 07:04:12 laforge Exp $
+ * $Id: ulogd.c,v 1.27 2002/07/30 07:15:54 laforge Exp $
*
* userspace logging daemon for the netfilter ULOG target
* of the linux 2.4 netfilter subsystem.
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: ulogd.c,v 1.26 2002/07/30 07:04:12 laforge Exp $
+ * $Id: ulogd.c,v 1.27 2002/07/30 07:15:54 laforge Exp $
*
* Modifications:
* 14 Jun 2001 Martin Josefsson <gandalf@wlug.westbo.se>
@@ -259,7 +259,7 @@ ulog_iret_t *keyh_getres(unsigned int id)
/***********************************************************************
* INTERPRETER MANAGEMENT
- ***********************************************************************
+ ***********************************************************************/
/* try to lookup a registered interpreter for a given name */
static ulog_interpreter_t *find_interpreter(const char *name)
@@ -464,6 +464,7 @@ static int logfile_open(const char *name)
exit(2);
}
}
+ ulogd_log(ULOGD_INFO, "ulogd Version %s starting\n", ULOGD_VERSION);
return 0;
}
@@ -669,7 +670,8 @@ int main(int argc, char* argv[])
/* endless loop receiving packets and handling them over to
* handle_packet */
- while (len = ipulog_read(libulog_h, libulog_buf, MYBUFSIZ, 1)) {
+ while (len = ipulog_read(libulog_h, libulog_buf,
+ bufsiz_ce.u.value, 1)) {
if (len <= 0) {
/* this is not supposed to happen */