diff options
author | vishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-17 23:24:44 +0000 |
---|---|---|
committer | vishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-17 23:24:44 +0000 |
commit | fd6212fbf8c8715471567f590b86fd3c089b9ff0 (patch) | |
tree | 7ef335676f76c8ca52f10211949e2ab6781c5f42 /ace | |
parent | f1ed832e8840124a3093844ae4485a4647f37395 (diff) | |
download | ATCD-fd6212fbf8c8715471567f590b86fd3c089b9ff0.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r-- | ace/OS.i | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7725,10 +7725,10 @@ ACE_OS::tzset (void) ACE_INLINE long ACE_OS::timezone (void) { -# if !defined (ACE_HAS_WINCE) && !defined (VXWORKS) && !defined (ACE_PSOS) +# if !defined (ACE_HAS_WINCE) && !defined (VXWORKS) && !defined (ACE_PSOS) # if defined (ACE_WIN32) return ::_timezone; // For Win32. -# elif defined(__Lynx__) || defined (__FreeBSD__) +# elif defined(__Lynx__) || defined (__FreeBSD__) || defined (CHORUS) long result = 0; struct timeval time; struct timezone zone; @@ -7738,7 +7738,7 @@ ACE_OS::timezone (void) return ::timezone; // For UNIX platforms. # endif # else - ACE_NOTSUP_RETURN (-1); + ACE_NOTSUP_RETURN (0); # endif /* !ACE_HAS_WINCE && !VXWORKS && !ACE_PSOS */ } |