diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-02-07 14:45:13 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-02-07 14:45:13 +0000 |
commit | 2d25e5f2f2bd8c0b089cafaa50ec01ef833badf3 (patch) | |
tree | 65b0793864e572808d3fc78776fece19710e6aa4 /usr.sbin | |
parent | 8991d912277a5d17608466544e0b445a8e0adb46 (diff) |
more log_debug() cleanup
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/hoststated/check_tcp.c | 3 | ||||
-rw-r--r-- | usr.sbin/hoststated/pfe_filter.c | 4 | ||||
-rw-r--r-- | usr.sbin/relayd/check_tcp.c | 3 | ||||
-rw-r--r-- | usr.sbin/relayd/pfe_filter.c | 4 |
4 files changed, 6 insertions, 8 deletions
diff --git a/usr.sbin/hoststated/check_tcp.c b/usr.sbin/hoststated/check_tcp.c index 20dcfe9a5fc..5b5f235aa20 100644 --- a/usr.sbin/hoststated/check_tcp.c +++ b/usr.sbin/hoststated/check_tcp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: check_tcp.c,v 1.18 2007/02/07 14:39:45 reyk Exp $ */ +/* $OpenBSD: check_tcp.c,v 1.19 2007/02/07 14:45:12 reyk Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -250,7 +250,6 @@ tcp_read_buf(int s, short event, void *arg) default: buf_add(cte->buf, rbuf, br); if (cte->validate_read != NULL) { - log_debug("calling check"); if (cte->validate_read(cte) != 0) goto retry; diff --git a/usr.sbin/hoststated/pfe_filter.c b/usr.sbin/hoststated/pfe_filter.c index 22c95844271..060024f1219 100644 --- a/usr.sbin/hoststated/pfe_filter.c +++ b/usr.sbin/hoststated/pfe_filter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfe_filter.c,v 1.10 2007/01/29 14:23:31 pyr Exp $ */ +/* $OpenBSD: pfe_filter.c,v 1.11 2007/02/07 14:45:12 reyk Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -98,7 +98,7 @@ init_tables(struct hoststated *env) if (ioctl(env->pf->dev, DIOCRADDTABLES, &io) == -1) fatal("init_tables: cannot create tables"); - log_debug("created %d tables", io.pfrio_nadd); + log_debug("init_tables: created %d tables", io.pfrio_nadd); free(tables); diff --git a/usr.sbin/relayd/check_tcp.c b/usr.sbin/relayd/check_tcp.c index 20dcfe9a5fc..5b5f235aa20 100644 --- a/usr.sbin/relayd/check_tcp.c +++ b/usr.sbin/relayd/check_tcp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: check_tcp.c,v 1.18 2007/02/07 14:39:45 reyk Exp $ */ +/* $OpenBSD: check_tcp.c,v 1.19 2007/02/07 14:45:12 reyk Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -250,7 +250,6 @@ tcp_read_buf(int s, short event, void *arg) default: buf_add(cte->buf, rbuf, br); if (cte->validate_read != NULL) { - log_debug("calling check"); if (cte->validate_read(cte) != 0) goto retry; diff --git a/usr.sbin/relayd/pfe_filter.c b/usr.sbin/relayd/pfe_filter.c index 22c95844271..060024f1219 100644 --- a/usr.sbin/relayd/pfe_filter.c +++ b/usr.sbin/relayd/pfe_filter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfe_filter.c,v 1.10 2007/01/29 14:23:31 pyr Exp $ */ +/* $OpenBSD: pfe_filter.c,v 1.11 2007/02/07 14:45:12 reyk Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org> @@ -98,7 +98,7 @@ init_tables(struct hoststated *env) if (ioctl(env->pf->dev, DIOCRADDTABLES, &io) == -1) fatal("init_tables: cannot create tables"); - log_debug("created %d tables", io.pfrio_nadd); + log_debug("init_tables: created %d tables", io.pfrio_nadd); free(tables); |