mirror of
https://github.com/mirror/wget.git
synced 2024-12-28 22:00:27 +08:00
Remove duplicated words
This commit is contained in:
parent
5a712b5bcf
commit
3e8f9a6436
@ -1,5 +1,7 @@
|
|||||||
2014-06-11 Giuseppe Scrivano <gscrivan@redhat.com>
|
2014-06-11 Giuseppe Scrivano <gscrivan@redhat.com>
|
||||||
|
|
||||||
|
* NEWS: Remove repeated word.
|
||||||
|
|
||||||
* po/POTFILES.in: Add lib/regcomp.c.
|
* po/POTFILES.in: Add lib/regcomp.c.
|
||||||
|
|
||||||
* configure.ac: Do not depend on always defined macros.
|
* configure.ac: Do not depend on always defined macros.
|
||||||
|
2
NEWS
2
NEWS
@ -684,7 +684,7 @@ ASCII type transfer:
|
|||||||
|
|
||||||
wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
|
wget "ftp://ftp.somewhere.com/welcome.msg;type=a"
|
||||||
|
|
||||||
** `--help' and `--version' options have been redone to to conform to
|
** `--help' and `--version' options have been redone to conform to
|
||||||
standards set by other GNU utilities.
|
standards set by other GNU utilities.
|
||||||
|
|
||||||
** Wget should now be compilable under MS Windows environment. MS
|
** Wget should now be compilable under MS Windows environment. MS
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2014-06-11 Giuseppe Scrivano <gscrivan@redhat.com>
|
2014-06-11 Giuseppe Scrivano <gscrivan@redhat.com>
|
||||||
|
|
||||||
|
* cmpt.c (day_of_the_week): Remove repeated word in a comment.
|
||||||
|
* utils.c: Remove repeated word in a comment.
|
||||||
|
|
||||||
* gnutls.c: Do not include <assert.h>.
|
* gnutls.c: Do not include <assert.h>.
|
||||||
|
|
||||||
* connect.c: Do not depend on always defined macros.
|
* connect.c: Do not depend on always defined macros.
|
||||||
|
@ -372,7 +372,7 @@ static void
|
|||||||
day_of_the_week (struct tm *tm)
|
day_of_the_week (struct tm *tm)
|
||||||
{
|
{
|
||||||
/* We know that January 1st 1970 was a Thursday (= 4). Compute the
|
/* We know that January 1st 1970 was a Thursday (= 4). Compute the
|
||||||
the difference between this data in the one on TM and so determine
|
difference between this data in the one on TM and so determine
|
||||||
the weekday. */
|
the weekday. */
|
||||||
int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
|
int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
|
||||||
int wday = (-473
|
int wday = (-473
|
||||||
|
@ -2168,7 +2168,7 @@ base64_encode (const void *data, size_t length, char *dest)
|
|||||||
|
|
||||||
Since DEST is assumed to contain binary data, it is not
|
Since DEST is assumed to contain binary data, it is not
|
||||||
NUL-terminated. The function returns the length of the data
|
NUL-terminated. The function returns the length of the data
|
||||||
written to TO. -1 is returned in case of error caused by malformed
|
written to "TO". -1 is returned in case of error caused by malformed
|
||||||
base64 input.
|
base64 input.
|
||||||
|
|
||||||
This function originates from Free Recode. */
|
This function originates from Free Recode. */
|
||||||
|
Loading…
Reference in New Issue
Block a user