diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-01-12 11:29:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-01-12 11:29:36 +0000 |
commit | c8b4cbb1be7316de4c4ae132451240592764d60e (patch) | |
tree | fae3e0f2ff45967fd2aa24c4e7526ff1b477a6d5 | |
parent | 875570bf3911bd39a83475159f6ca86413bd8e10 (diff) |
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 *); |