svn commit: samba r16857 - in trunk/source: client modules
jra at samba.org
jra at samba.org
Fri Jul 7 05:11:33 GMT 2006
Author: jra
Date: 2006-07-07 05:11:33 +0000 (Fri, 07 Jul 2006)
New Revision: 16857
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16857
Log:
Don't use LL - compiler might not have it.
Jeremy.
Modified:
trunk/source/client/clitar.c
trunk/source/modules/vfs_default.c
Changeset:
Modified: trunk/source/client/clitar.c
===================================================================
--- trunk/source/client/clitar.c 2006-07-07 05:05:33 UTC (rev 16856)
+++ trunk/source/client/clitar.c 2006-07-07 05:11:33 UTC (rev 16857)
@@ -201,7 +201,7 @@
oct_it((SMB_BIG_UINT)0, 8, hb.dbuf.uid);
oct_it((SMB_BIG_UINT)0, 8, hb.dbuf.gid);
oct_it((SMB_BIG_UINT) size, 13, hb.dbuf.size);
- if (size > (SMB_BIG_UINT)077777777777LL) {
+ if (size > (SMB_BIG_UINT)077777777777) {
/* This is a non-POSIX compatible extention to store files
greater than 8GB. */
Modified: trunk/source/modules/vfs_default.c
===================================================================
--- trunk/source/modules/vfs_default.c 2006-07-07 05:05:33 UTC (rev 16856)
+++ trunk/source/modules/vfs_default.c 2006-07-07 05:11:33 UTC (rev 16857)
@@ -1325,4 +1325,3 @@
return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
DEFAULT_VFS_MODULE_NAME, vfs_default_ops);
}
-
More information about the samba-cvs
mailing list