Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_info.c
index 3fe6a26b24f0af2cfe560ebd00fe8ef64eb6608b..ea3db75dd231dd1d3f2d9519e30ccc3aeae1861d 100644 (file)
@@ -129,7 +129,7 @@ int m_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":Birth Date: %s, compile # %s",
               creation, generation);
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":On-line since %s",
-              myctime(me.firsttime));
+              myctime(cli_firsttime(&me)));
     send_reply(sptr, RPL_ENDOFINFO);
   }
   return 0;
@@ -166,7 +166,7 @@ int ms_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":Birth Date: %s, compile # %s",
               creation, generation);
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":On-line since %s",
-              myctime(me.firsttime));
+              myctime(cli_firsttime(&me)));
     send_reply(sptr, RPL_ENDOFINFO);
   }
   return 0;
@@ -200,7 +200,7 @@ int mo_info(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":Birth Date: %s, compile # %s",
               creation, generation);
     send_reply(sptr, SND_EXPLICIT | RPL_INFO, ":On-line since %s",
-              myctime(me.firsttime));
+              myctime(cli_firsttime(&me)));
     send_reply(sptr, RPL_ENDOFINFO);
   }
   return 0;