aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-06-15 20:21:45 +0000
committerGuy Harris <guy@alum.mit.edu>2011-06-15 20:21:45 +0000
commit2bada9a24f9c625a66f5b7da8710c9874454f898 (patch)
tree086e1e5a321a14d732fe63ece95ac525180a08c8 /dumpcap.c
parent37654b4023979e46827704f27cb8a67e011ba1dd (diff)
Constify some arguments.
Technically, %p must be given a void * as an argument (although the representation of pointers on all platforms we deal with is the same for all pointed-to types). svn path=/trunk/; revision=37675
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dumpcap.c b/dumpcap.c
index 3f5dfea659..4cc46366ca 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -714,7 +714,7 @@ set_pcap_linktype(pcap_t *pcap_h, int linktype,
static gboolean
compile_capture_filter(const char *iface, pcap_t *pcap_h,
- struct bpf_program *fcode, char *cfilter)
+ struct bpf_program *fcode, const char *cfilter)
{
bpf_u_int32 netnum, netmask;
gchar lookup_net_err_str[PCAP_ERRBUF_SIZE];
@@ -2421,7 +2421,7 @@ static void capture_loop_close_input(loop_data *ld)
#endif
/* if open, close the pcap "input file" */
if (pcap_opts->pcap_h != NULL) {
- g_log(LOG_DOMAIN_CAPTURE_CHILD, G_LOG_LEVEL_DEBUG, "capture_loop_close_input: closing %p", pcap_opts->pcap_h);
+ g_log(LOG_DOMAIN_CAPTURE_CHILD, G_LOG_LEVEL_DEBUG, "capture_loop_close_input: closing %p", (void *)pcap_opts->pcap_h);
pcap_close(pcap_opts->pcap_h);
pcap_opts->pcap_h = NULL;
}
@@ -2439,7 +2439,7 @@ static void capture_loop_close_input(loop_data *ld)
/* init the capture filter */
static initfilter_status_t
capture_loop_init_filter(pcap_t *pcap_h, gboolean from_cap_pipe,
- gchar * name, gchar * cfilter)
+ const gchar * name, const gchar * cfilter)
{
struct bpf_program fcode;