aboutsummaryrefslogtreecommitdiffstats
path: root/dumpcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2019-07-27 21:20:27 -0700
committerGuy Harris <guy@alum.mit.edu>2019-07-28 04:21:18 +0000
commit22e7952e06f01c475f427699f5e06578f4b18cf7 (patch)
tree905baf9c93f64ce8a7100d34703d1cbef784f864 /dumpcap.c
parent3eb76d1c3a281df9e64543cc8f523da40474c38c (diff)
HTTPS In Even More Places, update some links.
Fall back on the Wayback Machine for some links. Change-Id: I6a44a2caaeb4fa521c2f08196e7c36069e3bb842 Reviewed-on: https://code.wireshark.org/review/34103 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'dumpcap.c')
-rw-r--r--dumpcap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dumpcap.c b/dumpcap.c
index 374300b208..5daee8bf89 100644
--- a/dumpcap.c
+++ b/dumpcap.c
@@ -2407,7 +2407,7 @@ pcap_pipe_dispatch(loop_data *ld, capture_src *pcap_src, char *errmsg, size_t er
*/
new_bufsize = pcap_info->rechdr.hdr.incl_len;
/*
- * http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
+ * https://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
*/
new_bufsize--;
new_bufsize |= new_bufsize >> 1;
@@ -2633,7 +2633,7 @@ pcapng_pipe_dispatch(loop_data *ld, capture_src *pcap_src, char *errmsg, size_t
*/
new_bufsize = bh->block_total_length;
/*
- * http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
+ * https://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
*/
new_bufsize--;
new_bufsize |= new_bufsize >> 1;