From: Pierre Habouzit Date: Wed, 8 Nov 2006 12:27:35 +0000 (+0100) Subject: fix the user-agent X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=e7ca08ff86e3d01578d024a62385bafe7bceffd2;hp=3ca2e5020807d066df2490b05e0d1a074c026133 fix the user-agent Signed-off-by: Pierre Habouzit --- 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; }