aboutsummaryrefslogtreecommitdiffstats
path: root/tap-megacostat.c
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-23 06:08:19 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-09-23 06:08:19 +0000
commit7922758c4a1ae891cd7f2b13d4b719ab166277aa (patch)
treeffdae4a89b32ecc12a92475e2bbce1803011ec1a /tap-megacostat.c
parentf5b9349d6284eff4be6ba7771cc0e65ad4dee2f4 (diff)
Remove unnecessary include: register.h
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34194 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-megacostat.c')
-rw-r--r--tap-megacostat.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tap-megacostat.c b/tap-megacostat.c
index 5e2b3c5d36..d4316daba7 100644
--- a/tap-megacostat.c
+++ b/tap-megacostat.c
@@ -39,7 +39,6 @@
#include <epan/tap.h>
#include <epan/stat_cmd_args.h>
#include "epan/value_string.h"
-#include "register.h"
#include "epan/gcp.h"
#include "timestats.h"
#include <epan/prefs-int.h>
@@ -85,7 +84,7 @@ megacostat_init(const char *optarg, void* userdata _U_)
int i;
GString *error_string;
pref_t *megaco_ctx_track,*h248_ctx_track;
-
+
megaco_ctx_track = prefs_find_preference(prefs_find_module("megaco"),"ctx_info");
h248_ctx_track = prefs_find_preference(prefs_find_module("h248"),"ctx_info");
if (!*megaco_ctx_track->varp.boolp || !*h248_ctx_track->varp.boolp) {
@@ -93,7 +92,7 @@ megacostat_init(const char *optarg, void* userdata _U_)
printf("has to be set to true to enable measurement of service response times.\n");
exit(1);
}
-
+
ms=g_malloc(sizeof(megacostat_t));
if(!strncmp(optarg,"megaco,rtd,",11)){
ms->filter=g_strdup(optarg+11);