diff options
| author | jsorg71 <jsorg71> | 2006-09-29 23:50:28 +0000 |
|---|---|---|
| committer | jsorg71 <jsorg71> | 2006-09-29 23:50:28 +0000 |
| commit | 3e8572623cf492ab4f2e3109b6e1fddffc0c1af7 (patch) | |
| tree | 55bbf9acf36ea475fb3ee0990ec816b83609a6a1 | |
| parent | e00f110d54b430b4fc2f93b8d107c2d9206a4aae (diff) | |
| download | xrdp-proprietary-3e8572623cf492ab4f2e3109b6e1fddffc0c1af7.tar.gz xrdp-proprietary-3e8572623cf492ab4f2e3109b6e1fddffc0c1af7.zip | |
win32 fix
| -rw-r--r-- | common/os_calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/os_calls.c b/common/os_calls.c index 24528aa8..a8bad74a 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -1256,7 +1256,7 @@ int g_time1(void) { #if defined(_WIN32) - return 0; + return GetTickCount() / 1000; #else return time(0); #endif |
