ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.3.x/src/ircd.c
(Generate patch)

Comparing ircd-hybrid/branches/8.3.x/src/ircd.c (file contents):
Revision 6782 by michael, Thu Nov 12 19:37:24 2015 UTC vs.
Revision 6783 by michael, Sun Nov 15 18:50:00 2015 UTC

# Line 157 | Line 157 | set_time(void)
157  
158    if (newtime.tv_sec < CurrentTime)
159    {
160 <    ilog(LOG_TYPE_IRCD, "System clock is running backwards - (%lu < %lu)",
161 <         (unsigned long)newtime.tv_sec, (unsigned long)CurrentTime);
160 >    ilog(LOG_TYPE_IRCD, "System clock is running backwards - (%ju < %ju)",
161 >         newtime.tv_sec, CurrentTime);
162      sendto_realops_flags(UMODE_DEBUG, L_ALL, SEND_NOTICE,
163 <                         "System clock is running backwards - (%lu < %lu)",
164 <                         (unsigned long)newtime.tv_sec,
165 <                         (unsigned long)CurrentTime);
163 >                         "System clock is running backwards - (%ju < %ju)",
164 >                         newtime.tv_sec,
165 >                         CurrentTime);
166      event_set_back_events(CurrentTime - newtime.tv_sec);
167    }
168  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines