diff mcabber/src/hooks.c @ 118:1e8f646e2c5b

[/trunk] Changeset 131 by mikael * Clean up * Fix /status offline * Change (slightly) history log line format
author mikael
date Mon, 25 Apr 2005 19:02:07 +0000
parents 1e7e59775f12
children cfd3df636d5f
line wrap: on
line diff
--- a/mcabber/src/hooks.c	Mon Apr 25 15:26:17 2005 +0000
+++ b/mcabber/src/hooks.c	Mon Apr 25 19:02:07 2005 +0000
@@ -51,18 +51,14 @@
   hlog_write_status(jid, 0, status);
 }
 
-// XXX Maybe we should get the old status as a parameter and request the
-// current status to jabglue?  Or get both statuses?
 inline void hk_mystatuschange(time_t timestamp,
         enum imstatus old_status, enum imstatus new_status)
 {
   if (old_status == new_status)
     return;
 
-  scr_LogPrint("Your status has changed: [%c>%c]",
+  scr_LogPrint("Your status has changed:  [%c>%c]",
           imstatus2char[old_status], imstatus2char[new_status]);
-  //roster_setstatus(jid, status);
   //hlog_write_status(NULL, 0, status);
-
 }