Remove duplicated words

This commit is contained in:
Giuseppe Scrivano 2014-06-11 16:42:49 +02:00
parent 5a712b5bcf
commit 3e8f9a6436
5 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2014-06-11 Giuseppe Scrivano <gscrivan@redhat.com>
* NEWS: Remove repeated word.
* po/POTFILES.in: Add lib/regcomp.c.
* configure.ac: Do not depend on always defined macros.

2
NEWS
View File

@ -684,7 +684,7 @@ ASCII type transfer:
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.
** Wget should now be compilable under MS Windows environment. MS

View File

@ -1,5 +1,8 @@
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>.
* connect.c: Do not depend on always defined macros.

View File

@ -372,7 +372,7 @@ static void
day_of_the_week (struct tm *tm)
{
/* 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. */
int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
int wday = (-473

View File

@ -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
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.
This function originates from Free Recode. */