Просмотр исходного кода

* Fixed typo in cmd_date

svn: 1638
Bryan Drewery 21 лет назад
Родитель
Сommit
1932349bee
2 измененных файлов с 2 добавлено и 1 удалено
  1. 1 0
      doc/UPDATES
  2. 1 1
      src/cmds.c

+ 1 - 0
doc/UPDATES

@@ -25,6 +25,7 @@ This is a summary of ChangeLog basically.
 * Fixed some other relay segfaults and stack smashings (one from eggdrop).
 * Fixed ipv6 bots connecting over ipv4.
 * Fixed getin system continuing to parse for bans and assorted requests when bot wasn't even opped.
+* Fixed typo in cmd_date.
 
 1.2
 * No longer displaying SALTS on ./bin -v

+ 1 - 1
src/cmds.c

@@ -1242,7 +1242,7 @@ static void cmd_date(int idx, char *par)
   egg_strftime(date, sizeof date, "%c %Z", localtime(&now));
   dprintf(idx, "%s (local shell time)\n", date);
   egg_strftime(date, sizeof date, "%c %Z", gmtime(&now));
-  dprintf(idx, "%s <-- This time is use don the bot.\n", date);
+  dprintf(idx, "%s <-- This time is used on the bot.\n", date);
   
   hub = now + timesync;
   egg_strftime(date, sizeof date, "%c %Z", gmtime(&hub));