fix the user-agent
authorPierre Habouzit <madcoder@debian.org>
Wed, 8 Nov 2006 12:27:35 +0000 (13:27 +0100)
committerPierre Habouzit <madcoder@debian.org>
Wed, 8 Nov 2006 12:27:35 +0000 (13:27 +0100)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
init.h
muttlib.c

diff --git a/init.h b/init.h
index 82fab85..aa2c2bd 100644 (file)
--- 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, "." },
   /*
index 7803776..0f6114e 100644 (file)
--- 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;
 }