Fixed type in NTP/Cisco style timestamp formatting.

git-svn-id: http://voip.null.ro/svn/yate@737 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2006-04-03 18:23:51 +00:00
parent ca857da4bf
commit 63bc3eb3f4
1 changed files with 1 additions and 1 deletions

View File

@ -1344,7 +1344,7 @@ static bool ciscoTime(double t, String& ret)
return false;
char buf[64];
ret.clear();
if (!strftime(buf,sizeof(buf),"%H:%m:%S",brokenTime))
if (!strftime(buf,sizeof(buf),"%H:%M:%S",brokenTime))
return false;
ret = buf;
sprintf(buf,".%03u ",msec);