aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorPriit Laes <amd@tt.ee>2004-05-01 02:24:21 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-01 02:24:21 +0800
commit47d08d021f98307e84e7525340ac008ebf4d12f4 (patch)
treeb826216b428968c1cfc49c534ef950a08a1bb870 /camel
parentf27d3cd1e292bbeddb62d02bee8c26efb52a9198 (diff)
downloadgsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar.gz
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar.bz2
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar.lz
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar.xz
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.tar.zst
gsoc2013-evolution-47d08d021f98307e84e7525340ac008ebf4d12f4.zip
Fix typo. #53466.
2004-04-30 Priit Laes <amd@tt.ee> * providers/nntp/camel-nntp-summary.c: Fix typo. #53466. svn path=/trunk/; revision=25722
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/camel-tcp-stream-raw.c3
-rw-r--r--camel/providers/nntp/camel-nntp-summary.c2
3 files changed, 6 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0fe283682a..c4e5fd034f 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-30 Priit Laes <amd@tt.ee>
+
+ * providers/nntp/camel-nntp-summary.c: Fix typo. #53466.
+
2004-04-28 Jeffrey Stedfast <fejj@ximian.com>
* providers/imap/camel-imap-folder.c: Change the UID_SET_LIMIT to
diff --git a/camel/camel-tcp-stream-raw.c b/camel/camel-tcp-stream-raw.c
index 8981200c28..04e47ac64b 100644
--- a/camel/camel-tcp-stream-raw.c
+++ b/camel/camel-tcp-stream-raw.c
@@ -390,8 +390,7 @@ stream_connect (CamelTcpStream *stream, struct hostent *host, int port)
g_return_val_if_fail (host != NULL, -1);
- fd = socket_connect (host, port);
- if (fd == -1)
+ if ((fd = socket_connect (host, port)) == -1)
return -1;
raw->sockfd = fd;
diff --git a/camel/providers/nntp/camel-nntp-summary.c b/camel/providers/nntp/camel-nntp-summary.c
index 7923369754..d897db24e9 100644
--- a/camel/providers/nntp/camel-nntp-summary.c
+++ b/camel/providers/nntp/camel-nntp-summary.c
@@ -330,7 +330,7 @@ camel_nntp_summary_check(CamelNNTPSummary *cns, CamelFolderChangeInfo *changes,
if (ret < 0)
camel_exception_setv(ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
- _("Could not get messages: unspecificed error"));
+ _("Could not get messages: unspecified error"));
return ret;
}