From e5c642efe8f2f698b7f0a4720c73d2e52f9fc9d8 Mon Sep 17 00:00:00 2001 From: ak1 Date: Tue, 18 Oct 2005 08:09:10 +0000 Subject: [PATCH] Andreas Krennmair: fixed wrong variable for -g commandline option. Thanks to Michael Prokop for hint. git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@552 e385b8ad-14ed-0310-8656-cc95a2468c6d --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 24eb705..d604a54 100644 --- a/main.c +++ b/main.c @@ -708,7 +708,7 @@ int main (int argc, char **argv) { char buf[LONG_STRING]; - snprintf (buf, sizeof (buf), "set news_server=%s", optarg); + snprintf (buf, sizeof (buf), "set nntp_host=%s", optarg); commands = mutt_add_list (commands, buf); } -- 2.20.1