From 3e8f9a6436d8ade788e2880901acc9378f0f5652 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 11 Jun 2014 16:42:49 +0200 Subject: [PATCH] Remove duplicated words --- ChangeLog | 2 ++ NEWS | 2 +- src/ChangeLog | 3 +++ src/cmpt.c | 2 +- src/utils.c | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7884ec6f..29891b75 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-06-11 Giuseppe Scrivano + * NEWS: Remove repeated word. + * po/POTFILES.in: Add lib/regcomp.c. * configure.ac: Do not depend on always defined macros. diff --git a/NEWS b/NEWS index 2922cde2..85c0f724 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/src/ChangeLog b/src/ChangeLog index 88837a02..0a4f4dcb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2014-06-11 Giuseppe Scrivano + * 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 . * connect.c: Do not depend on always defined macros. diff --git a/src/cmpt.c b/src/cmpt.c index 8ca3b038..a49103e9 100644 --- a/src/cmpt.c +++ b/src/cmpt.c @@ -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 diff --git a/src/utils.c b/src/utils.c index ebce0b83..0be07701 100644 --- a/src/utils.c +++ b/src/utils.c @@ -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. */