Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 498794 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/lib/krb5/os/sendto_kdc.c (-1 / +3 lines)
Lines 256-263 get_curtime_ms(time_ms *time_out) Link Here
256
{
256
{
257
    struct timeval tv;
257
    struct timeval tv;
258
258
259
    if (gettimeofday(&tv, 0))
259
    if (gettimeofday(&tv, 0)) {
260
        assert(errno);
260
        return errno;
261
        return errno;
262
    }
261
    *time_out = (time_ms)tv.tv_sec * 1000 + tv.tv_usec / 1000;
263
    *time_out = (time_ms)tv.tv_sec * 1000 + tv.tv_usec / 1000;
262
    return 0;
264
    return 0;
263
}
265
}

Return to bug 498794