From 5d5f7fc078fbe2aefbd8af68a9439ca5c0ee61be Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Tue, 11 Sep 2007 13:50:17 +0200 Subject: [PATCH] NNTP: Fix group listing links having bad URL syntax due to double slashes --- src/protocol/nntp/response.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/nntp/response.c b/src/protocol/nntp/response.c index da3a462f..2e4dd19a 100644 --- a/src/protocol/nntp/response.c +++ b/src/protocol/nntp/response.c @@ -312,7 +312,7 @@ add_nntp_html_line(struct string *html, struct connection *conn, desc = ""; } - add_format_to_string(html, "
%s
%s
\n", + add_format_to_string(html, "
%s
%s
\n", struri(conn->uri), line, line, desc); break; }