diff options
author | Jeff Morriss <jeff.morriss@ulticom.com> | 2010-09-23 06:08:19 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss@ulticom.com> | 2010-09-23 06:08:19 +0000 |
commit | a1925522db977eb4ec45ea023a6d68b8ec3ebf3f (patch) | |
tree | ffdae4a89b32ecc12a92475e2bbce1803011ec1a /tap-megacostat.c | |
parent | f12ef203b39206726a435590e64f8014f6b84ec9 (diff) |
Remove unnecessary include: register.h
svn path=/trunk/; revision=34194
Diffstat (limited to 'tap-megacostat.c')
-rw-r--r-- | tap-megacostat.c | 5 |
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); |