From 262ffd9750f58f2c5f2268932b45c4d7b05a5fca Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 11 Apr 2006 06:39:51 +0000 Subject: r15035: It seems that many preprocessors do not like comments in macro args.. (This used to be commit efc833dcba052e52c46eeba71a1ebe248be9cb05) --- source3/smbd/trans2.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 31e3d9e329..b229807bfd 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -2407,12 +2407,15 @@ cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned SSVAL(pdata,0,CIFS_UNIX_MAJOR_VERSION); SSVAL(pdata,2,CIFS_UNIX_MINOR_VERSION); /* We have POSIX ACLs, pathname and locking capability. */ +#if defined(DEVELOPER) /* Not quite finished yet... */ SBIG_UINT(pdata,4,((SMB_BIG_UINT)( CIFS_UNIX_POSIX_ACLS_CAP| CIFS_UNIX_POSIX_PATHNAMES_CAP| -#if defined(DEVELOPER) /* Not quite finished yet... */ CIFS_UNIX_FCNTL_LOCKS_CAP))); #else + SBIG_UINT(pdata,4,((SMB_BIG_UINT)( + CIFS_UNIX_POSIX_ACLS_CAP| + CIFS_UNIX_POSIX_PATHNAMES_CAP| 0))); #endif break; -- cgit