Nico Golde:
authornion <nion@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Wed, 16 Feb 2005 21:33:33 +0000 (21:33 +0000)
committernion <nion@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Wed, 16 Feb 2005 21:33:33 +0000 (21:33 +0000)
  fixed names (e.g. of -v)

git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@66 e385b8ad-14ed-0310-8656-cc95a2468c6d

ChangeLog.mutt-ng
init.c
status.c

index 3c0f5de..7efaf5f 100644 (file)
@@ -2,6 +2,7 @@ Changes specific to mutt-ng:
 
 2004-02-16:
   * fixed segfault in curs_lib.c
+  * fixed names
 
 2005-02-13:
   * Merged in mutt changes from 1.5.7 to 1.5.8
diff --git a/init.c b/init.c
index 0205579..29f67fb 100644 (file)
--- a/init.c
+++ b/init.c
@@ -2136,7 +2136,7 @@ static void start_debug (void)
   {
     t = time (0);
     setbuf (debugfile, NULL); /* don't buffer the debugging output! */
-    fprintf (debugfile, "Mutt %s started at %s.\nDebugging at level %d.\n\n",
+    fprintf (debugfile, "Mutt-ng %s started at %s.\nDebugging at level %d.\n\n",
             MUTT_VERSION, asctime (localtime (&t)), debuglevel);
   }
 }
index 09a9df8..0dc5d0e 100644 (file)
--- a/status.c
+++ b/status.c
@@ -55,7 +55,7 @@ static char *get_sort_str (char *buf, size_t buflen, int method)
  * %s = current sorting method ($sort)
  * %S = current aux sorting method ($sort_aux)
  * %t = # of tagged messages [option]
- * %v = Mutt version 
+ * %v = Mutt-ng version 
  * %V = currently active limit pattern [option] */
 static const char *
 status_format_str (char *buf, size_t buflen, char op, const char *src,
@@ -270,7 +270,7 @@ status_format_str (char *buf, size_t buflen, char op, const char *src,
       break;
 
     case 'v':
-      snprintf (fmt, sizeof (fmt), "Mutt %%s");
+      snprintf (fmt, sizeof (fmt), "Mutt-ng %%s");
       snprintf (buf, buflen, fmt, MUTT_VERSION);
       break;