diff options
author | 2010-01-12 11:29:35 +0000 | |
---|---|---|
committer | 2010-01-12 11:29:35 +0000 | |
commit | 4a96820ea51032bb3dcf49bfce4b1acec639b6df (patch) | |
tree | 644e023d42ac09b548e71b2edda2a02cd31b4751 | |
parent | do not need rndvar.h anymore (diff) | |
download | wireguard-openbsd-4a96820ea51032bb3dcf49bfce4b1acec639b6df.tar.xz wireguard-openbsd-4a96820ea51032bb3dcf49bfce4b1acec639b6df.zip |
delete the unused debug macros
-rw-r--r-- | sys/net/if_vether.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/net/if_vether.c b/sys/net/if_vether.c index f38840e2421..b818fa4f8db 100644 --- a/sys/net/if_vether.c +++ b/sys/net/if_vether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vether.c,v 1.8 2010/01/12 11:28:09 deraadt Exp $ */ +/* $OpenBSD: if_vether.c,v 1.9 2010/01/12 11:29:35 deraadt Exp $ */ /* * Copyright (c) 2009 Theo de Raadt @@ -46,12 +46,6 @@ #include <net/bpf.h> #endif -#ifdef VETHER_DEBUG -#define DPRINTF(x) do { if (vetherdebug) printf x ; } while (0) -#else -#define DPRINTF(x) -#endif - void vetherattach(int); int vetherioctl(struct ifnet *, u_long, caddr_t); void vetherstart(struct ifnet *); |