From e7ca08ff86e3d01578d024a62385bafe7bceffd2 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Wed, 8 Nov 2006 13:27:35 +0100 Subject: [PATCH 1/1] fix the user-agent Signed-off-by: Pierre Habouzit --- init.h | 2 +- muttlib.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/init.h b/init.h index 82fab85..aa2c2bd 100644 --- a/init.h +++ b/init.h @@ -1499,7 +1499,7 @@ struct option_t MuttVars[] = { ** this is \fIunset\fP, it will be set to the operating system name that \fTuname(2)\fP ** returns. If \fTuname(2)\fP fails, ``UNIX'' will be used. ** .pp - ** It may, for example, look as: ``\fTmutt-ng 1.5.9i (Linux)\fP''. + ** It may, for example, look as: ``\fTMadmutt 1.5.9i (Linux)\fP''. */ {"sidebar_boundary", DT_STR, R_BOTH, UL &SidebarBoundary, "." }, /* diff --git a/muttlib.c b/muttlib.c index 7803776..0f6114e 100644 --- a/muttlib.c +++ b/muttlib.c @@ -1219,10 +1219,10 @@ const char *mutt_make_version (int full) if (full) snprintf (vstring, sizeof (vstring), - "Madmutt %s-r%s (based on Mutt 1.5.11)", + "Madmutt/%s-r%s (based on Mutt 1.5.11)", MUTT_VERSION, MUTT_REVISION); else - snprintf (vstring, sizeof (vstring), "mutt-ng/%s-r%s", + snprintf (vstring, sizeof (vstring), "Madmutt/%s-%s", MUTT_VERSION, MUTT_REVISION); return vstring; } -- 2.20.1