From: Pekka Riikonen Date: Sat, 21 Oct 2006 15:41:56 +0000 (+0000) Subject: Comment fixes. X-Git-Tag: silc.client.1.1.beta1~241 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=cb1ead656cf642d9f6797bddf46ca33f9a851023;p=silc.git Comment fixes. --- diff --git a/lib/silcutil/win32/silcwin32util.c b/lib/silcutil/win32/silcwin32util.c index fad5f599..5fac7e6f 100644 --- a/lib/silcutil/win32/silcwin32util.c +++ b/lib/silcutil/win32/silcwin32util.c @@ -4,12 +4,12 @@ Author: Pekka Riikonen - Copyright (C) 2001 - 2005 Pekka Riikonen + Copyright (C) 2001 - 2006 Pekka Riikonen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -45,13 +45,13 @@ int silc_string_match(const char *string1, const char *string2) const BYTE DWLEN = sizeof(DWORD) * 8; /* Return current time in struct timeval. Code ripped from some xntp - implementation on http://src.openresources.com. */ + implementation. */ int silc_gettimeofday(struct timeval *tv) { FILETIME ft; __int64 msec; - + GetSystemTimeAsFileTime(&ft); msec = (__int64) ft.dwHighDateTime << DWLEN | ft.dwLowDateTime; msec = (msec - FILETIME_1970) / 10;