1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-31 01:48:16 +03:00

r4676: NTTIME_1sec is a standard NTTIME for the calling code

as it's already converted in the pull/push code

metze
This commit is contained in:
Stefan Metzmacher 2005-01-11 06:47:15 +00:00 committed by Gerald (Jerry) Carter
parent 8807498f6d
commit 0d2286ba56

View File

@ -1102,7 +1102,10 @@ void ndr_print_NTTIME(struct ndr_print *ndr, const char *name, NTTIME t)
void ndr_print_NTTIME_1sec(struct ndr_print *ndr, const char *name, NTTIME_1sec t)
{
ndr_print_NTTIME(ndr, name, t * 10000000);
/* this is a standard NTTIME here
* as it's already converted in the pull/push code
*/
ndr_print_NTTIME(ndr, name, t);
}
void ndr_print_NTTIME_hyper(struct ndr_print *ndr, const char *name, NTTIME_hyper t)