From 991ad9d978fc45cdfe31c0b493a4ccf1c5d2637c Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Thu, 26 May 2005 20:38:18 +0000 Subject: [PATCH] 2005-05-26 [colin] 1.9.11cvs14 * src/common/nntp.c Fix nntp mode reader (bug #611) Patch by Florian Mickler --- ChangeLog-gtk2.claws | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/common/nntp.c | 4 +++- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index c7e7feca9..9886ba9eb 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,9 @@ +2005-05-26 [colin] 1.9.11cvs14 + + * src/common/nntp.c + Fix nntp mode reader (bug #611) + Patch by Florian Mickler + 2005-05-26 [colin] 1.9.11cvs13 * src/plugins/pgpmime/passphrase.c diff --git a/PATCHSETS b/PATCHSETS index f634328f4..c55caf81c 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -502,3 +502,4 @@ ( cvs diff -u -r 1.60.2.13 -r 1.60.2.14 src/prefs_actions.c; cvs diff -u -r 1.12.2.8 -r 1.12.2.9 src/prefs_template.c; cvs diff -u -r 1.2.4.5 -r 1.2.4.6 src/common/template.c; ) > 1.9.11cvs11.patchset ( cvs diff -u -r 1.3.2.18 -r 1.3.2.19 src/prefs_themes.c; ) > 1.9.11cvs12.patchset ( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 src/plugins/pgpmime/passphrase.c; ) > 1.9.11cvs13.patchset +( cvs diff -u -r 1.6.2.5 -r 1.6.2.6 src/common/nntp.c; ) > 1.9.11cvs14.patchset diff --git a/configure.ac b/configure.ac index bad42ebbd..bfa7f4cde 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=13 +EXTRA_VERSION=14 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/nntp.c b/src/common/nntp.c index 7fd7022df..de4a752f2 100644 --- a/src/common/nntp.c +++ b/src/common/nntp.c @@ -95,7 +95,9 @@ Session *nntp_session_new(const gchar *server, gushort port, gchar *buf, SESSION(session)->destroy = nntp_session_destroy; session->group = NULL; - + + nntp_mode(session, FALSE); + if (userid && passwd) { gint ok; -- 2.25.1