tags:

views:

25

answers:

1

I'm working on a machine which has some code running on it which sets the time when I set the password. The time set is epoch time, but it has 13 digits in it, and when I wrote a simple program to get the epoch time and ran it on my personal computer running linux, it returns the epoch time which has 10 digits. Would anyone know what the extra three digits signify?

Thanks in advance

+2  A: 

Probably seconds vs milliseconds.

You'd have to consult the specific documentation though.

glowcoder