Author: jra Date: 2007-05-18 23:56:34 +0000 (Fri, 18 May 2007) New Revision: 23006
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23006 Log: Arg. Fix stupid typo in 64-bit path. Jeremy. Modified: branches/SAMBA_3_0/source/lib/time.c branches/SAMBA_3_0_25/source/lib/time.c branches/SAMBA_3_0_26/source/lib/time.c Changeset: Modified: branches/SAMBA_3_0/source/lib/time.c =================================================================== --- branches/SAMBA_3_0/source/lib/time.c 2007-05-18 23:38:56 UTC (rev 23005) +++ branches/SAMBA_3_0/source/lib/time.c 2007-05-18 23:56:34 UTC (rev 23006) @@ -579,7 +579,7 @@ if (u == 0x80000000) { return (time_t)0x8000000000000000LL; } else if (u == 0x7FFFFFFF) { - return (time_t)0x7FFFFFFFFFFFFFFFLL) { + return (time_t)0x7FFFFFFFFFFFFFFFLL; } #endif return (time_t)u; Modified: branches/SAMBA_3_0_25/source/lib/time.c =================================================================== --- branches/SAMBA_3_0_25/source/lib/time.c 2007-05-18 23:38:56 UTC (rev 23005) +++ branches/SAMBA_3_0_25/source/lib/time.c 2007-05-18 23:56:34 UTC (rev 23006) @@ -579,7 +579,7 @@ if (u == 0x80000000) { return (time_t)0x8000000000000000LL; } else if (u == 0x7FFFFFFF) { - return (time_t)0x7FFFFFFFFFFFFFFFLL) { + return (time_t)0x7FFFFFFFFFFFFFFFLL; } #endif return (time_t)u; Modified: branches/SAMBA_3_0_26/source/lib/time.c =================================================================== --- branches/SAMBA_3_0_26/source/lib/time.c 2007-05-18 23:38:56 UTC (rev 23005) +++ branches/SAMBA_3_0_26/source/lib/time.c 2007-05-18 23:56:34 UTC (rev 23006) @@ -579,7 +579,7 @@ if (u == 0x80000000) { return (time_t)0x8000000000000000LL; } else if (u == 0x7FFFFFFF) { - return (time_t)0x7FFFFFFFFFFFFFFFLL) { + return (time_t)0x7FFFFFFFFFFFFFFFLL; } #endif return (time_t)u;
