]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
r23006: Arg. Fix stupid typo in 64-bit path.
authorJeremy Allison <jra@samba.org>
Fri, 18 May 2007 23:56:34 +0000 (23:56 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:22:14 +0000 (12:22 -0500)
Jeremy.
(This used to be commit 80a63123907c3291d8bdc6d364bf7343f4f084a0)

source3/lib/time.c

index ba158fe1ae9773ec7841f3299b475457ff041890..ae7f97790d425afd4ee8b9b610e1795315a3a415 100644 (file)
@@ -579,7 +579,7 @@ time_t convert_uint32_to_time_t(uint32 u)
        if (u == 0x80000000) {
                return (time_t)0x8000000000000000LL;
        } else if (u == 0x7FFFFFFF) {
-               return (time_t)0x7FFFFFFFFFFFFFFFLL) {
+               return (time_t)0x7FFFFFFFFFFFFFFFLL;
        }
 #endif
        return (time_t)u;