aboutsummaryrefslogtreecommitdiffstats
path: root/packet-radius.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-02-01 06:56:52 +0000
committerJörg Mayer <jmayer@loplof.de>2004-02-01 06:56:52 +0000
commitce1356b88cffc581d97518f04975c4a8bb154fc7 (patch)
tree13614adaef6ff85e53ff517150902bff3c1e0cb8 /packet-radius.c
parent38faa0f27bad25d554fad15509ea6eeb8b81240f (diff)
Undo previous checkin, it only contained acidentally escaped unfinished code
svn path=/trunk/; revision=9939
Diffstat (limited to 'packet-radius.c')
-rw-r--r--packet-radius.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/packet-radius.c b/packet-radius.c
index f81f572d3a..e01f56040a 100644
--- a/packet-radius.c
+++ b/packet-radius.c
@@ -6,7 +6,7 @@
*
* RFC 2865, RFC 2866, RFC 2867, RFC 2868, RFC 2869
*
- * $Id: packet-radius.c,v 1.90 2004/02/01 06:49:22 jmayer Exp $
+ * $Id: packet-radius.c,v 1.91 2004/02/01 06:56:52 jmayer Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -44,9 +44,7 @@
#include "packet-gtp.h"
#include "prefs.h"
#include "crypt-md5.h"
-#include "tap.h"
-static int radius_tap = -1;
static int proto_radius = -1;
static int hf_radius_length = -1;
static int hf_radius_code = -1;
@@ -2847,7 +2845,6 @@ static void dissect_radius(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
dissect_attribute_value_pairs(tvb, hdrlength, avptree, avplength, pinfo);
}
- tap_queue_packet(radius_tap, pinfo, NULL);
}
/* registration with the filtering engine */
void
@@ -2884,7 +2881,6 @@ proto_register_radius(void)
prefs_register_string_preference(radius_module,"shared_secret","Shared Secret",
"Shared secret used to decode User Passwords",
&shared_secret);
- radius_tap = register_tap("radius");
}
void