aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/ip/snoopy/dump.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2006-02-14 19:42:28 +0000
committerrsc <devnull@localhost>2006-02-14 19:42:28 +0000
commita38a183626848f897085b4d2e54dad6d39146948 (patch)
tree208277c8824b8db08878f5f5d65fb1e484099ead /src/cmd/ip/snoopy/dump.c
parent2eef1fa31676e58b0038f1c02dcc8df5e23149e6 (diff)
downloadplan9port-a38a183626848f897085b4d2e54dad6d39146948.tar.gz
plan9port-a38a183626848f897085b4d2e54dad6d39146948.tar.bz2
plan9port-a38a183626848f897085b4d2e54dad6d39146948.zip
fixes
Diffstat (limited to 'src/cmd/ip/snoopy/dump.c')
-rwxr-xr-xsrc/cmd/ip/snoopy/dump.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/cmd/ip/snoopy/dump.c b/src/cmd/ip/snoopy/dump.c
index 5174e4fc..227ac641 100755
--- a/src/cmd/ip/snoopy/dump.c
+++ b/src/cmd/ip/snoopy/dump.c
@@ -5,20 +5,6 @@
#include "dat.h"
#include "protos.h"
-static void
-p_compile(Filter *f)
-{
- USED(f);
-}
-
-static int
-p_filter(Filter *f, Msg *m)
-{
- USED(f);
- USED(m);
- return 0;
-}
-
static char tohex[16] = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f'
@@ -83,10 +69,11 @@ p_seprint(Msg *m)
Proto dump =
{
"dump",
- p_compile,
- p_filter,
+ nil,
+ nil,
p_seprint,
nil,
nil,
+ nil,
defaultframer,
};