summaryrefslogtreecommitdiff
path: root/src/ftp-basic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ftp-basic.c')
-rw-r--r--src/ftp-basic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ftp-basic.c b/src/ftp-basic.c
index bc129f6..3f77f37 100644
--- a/src/ftp-basic.c
+++ b/src/ftp-basic.c
@@ -1,6 +1,6 @@
/* Basic FTP routines.
- Copyright (C) 1996-2011, 2014-2015, 2018 Free Software Foundation,
- Inc.
+ Copyright (C) 1996-2011, 2014-2015, 2018-2019 Free Software
+ Foundation, Inc.
This file is part of GNU Wget.
@@ -904,7 +904,7 @@ ftp_epsv (int csock, ip_address *ip, int *port)
for (tport = 0, i = 0; i < 5 && c_isdigit (*s); i++, s++)
tport = (*s - '0') + 10 * tport;
- /* Make sure that the response terminates correcty */
+ /* Make sure that the response terminates correctly */
if (*s++ != delim)
{
xfree (respline);