summaryrefslogtreecommitdiffstats
path: root/sys/net/pf_osfp.c
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2008-06-12 18:17:01 +0000
committerhenning <henning@openbsd.org>2008-06-12 18:17:01 +0000
commit57a99408baa03c3f124854a0ca743c3df8bf8972 (patch)
tree5b887494d682b7dc25f297b83430163faf6c9531 /sys/net/pf_osfp.c
parentGet mask keying for on-disk keys from user space and keep a "hint" for key (diff)
downloadwireguard-openbsd-57a99408baa03c3f124854a0ca743c3df8bf8972.tar.xz
wireguard-openbsd-57a99408baa03c3f124854a0ca743c3df8bf8972.zip
#if 0 an annoygly chatty printf active whenever we're at loglevel
loud, spilling out hundreds of lines on ruleset reloads is disturbing when you're hacking over cereal console, ryan ok
Diffstat (limited to 'sys/net/pf_osfp.c')
-rw-r--r--sys/net/pf_osfp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/pf_osfp.c b/sys/net/pf_osfp.c
index d05a7be6381..57344e155fc 100644
--- a/sys/net/pf_osfp.c
+++ b/sys/net/pf_osfp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf_osfp.c,v 1.13 2007/09/01 18:49:27 henning Exp $ */
+/* $OpenBSD: pf_osfp.c,v 1.14 2008/06/12 18:17:01 henning Exp $ */
/*
* Copyright (c) 2003 Mike Frantzen <frantzen@w4g.org>
@@ -335,6 +335,7 @@ pf_osfp_add(struct pf_osfp_ioctl *fpioc)
fpadd.fp_wscale = fpioc->fp_wscale;
fpadd.fp_ttl = fpioc->fp_ttl;
+#if 0 /* XXX RYAN wants to fix logging */
DPFPRINTF("adding osfp %s %s %s = %s%d:%d:%d:%s%d:0x%llx %d "
"(TS=%s,M=%s%d,W=%s%d) %x\n",
fpioc->fp_os.fp_class_nm, fpioc->fp_os.fp_version_nm,
@@ -358,7 +359,7 @@ pf_osfp_add(struct pf_osfp_ioctl *fpioc)
(fpadd.fp_flags & PF_OSFP_WSCALE_DC) ? "*" : "",
fpadd.fp_wscale,
fpioc->fp_os.fp_os);
-
+#endif
if ((fp = pf_osfp_find_exact(&pf_osfp_list, &fpadd))) {
SLIST_FOREACH(entry, &fp->fp_oses, fp_entry) {