summaryrefslogtreecommitdiff
path: root/lib/tftp.c
diff options
context:
space:
mode:
authorViktor Szakats <commit@vsz.me>2021-08-12 18:41:13 +0000
committerViktor Szakats <commit@vsz.me>2021-08-12 18:41:13 +0000
commit063bfa358e7766a331e2c7e29303513839dd132d (patch)
treee72dbcf7a57d34778937c641679041b776e0021f /lib/tftp.c
parenta90811e30570856407538f85602f2450242ed4c1 (diff)
downloadcurl-063bfa358e7766a331e2c7e29303513839dd132d.tar.gz
cleanup: URL updates
- replace broken URL with the one it was most probably pointing to when added (lib/tftp.c) - replace broken URL with archive.org link (lib/curl_ntlm_wb.c) - delete unnecessary protocol designator from archive.org URL (docs/BINDINGS.md) Closes #7562
Diffstat (limited to 'lib/tftp.c')
-rw-r--r--lib/tftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tftp.c b/lib/tftp.c
index 8aeb14a4f..aae997d0f 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -720,7 +720,7 @@ static CURLcode tftp_tx(struct tftp_state_data *state, tftp_event_t event)
/* There's a bug in tftpd-hpa that causes it to send us an ack for
* 65535 when the block number wraps to 0. So when we're expecting
* 0, also accept 65535. See
- * http://syslinux.zytor.com/archives/2010-September/015253.html
+ * https://www.syslinux.org/archives/2010-September/015612.html
* */
!(state->block == 0 && rblock == 65535)) {
/* This isn't the expected block. Log it and up the retry counter */