diff options
author | Alexander Bokovoy <ab@samba.org> | 2003-05-14 14:38:11 +0000 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2003-05-14 14:38:11 +0000 |
commit | 2c01eef4d7ea9ed57ea5f68a0e75559e101fd26f (patch) | |
tree | 98c576bbbae29c213d7da4597b69cfa2a0591d14 /source3/smbd/trans2.c | |
parent | bc2a3748e9caa8f60f7c2387e7eecd7fb3fae899 (diff) | |
download | samba-2c01eef4d7ea9ed57ea5f68a0e75559e101fd26f.tar.gz samba-2c01eef4d7ea9ed57ea5f68a0e75559e101fd26f.tar.xz samba-2c01eef4d7ea9ed57ea5f68a0e75559e101fd26f.zip |
Evolve quotas configure check more. Patch from Stefan (metze) Metzemacher. Now we are defaulting to --with-quotas=no but anyway trying to test them in configure. This is done to get information about as much quota API variations as possible -- when --with-quotas=no this does not affect build but provides us with more detailed information on build farm.
(This used to be commit 3786695c72e6ff6a52a527382ac77142e236971b)
Diffstat (limited to 'source3/smbd/trans2.c')
-rw-r--r-- | source3/smbd/trans2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 731fb9643b..0bf9580798 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -1480,7 +1480,7 @@ cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned SIVAL(pdata,4,0); /* characteristics */ break; -#ifdef WITH_QUOTAS +#ifdef HAVE_SYS_QUOTAS case SMB_FS_QUOTA_INFORMATION: /* * what we have to send --metze: @@ -1551,7 +1551,7 @@ cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned break; } -#endif /* WITH_QUOTAS */ +#endif /* HAVE_SYS_QUOTAS */ case SMB_FS_OBJECTID_INFORMATION: data_len = 64; break; @@ -1593,7 +1593,7 @@ cBytesSector=%u, cUnitTotal=%u, cUnitAvail=%d\n", (unsigned int)bsize, (unsigned return -1; } -#ifdef WITH_QUOTAS +#ifdef HAVE_SYS_QUOTAS /**************************************************************************** Reply to a TRANS2_SETFSINFO (set filesystem info). ****************************************************************************/ @@ -1705,7 +1705,7 @@ static int call_trans2setfsinfo(connection_struct *conn, return outsize; } -#endif /* WITH_QUOTAS */ +#endif /* HAVE_SYS_QUOTAS */ /**************************************************************************** * Utility function to set bad path error. @@ -3492,7 +3492,7 @@ int reply_trans2(connection_struct *conn, END_PROFILE_NESTED(Trans2_qfsinfo); break; -#ifdef WITH_QUOTAS +#ifdef HAVE_SYS_QUOTAS case TRANSACT2_SETFSINFO: START_PROFILE_NESTED(Trans2_setfsinfo); outsize = call_trans2setfsinfo(conn, inbuf, outbuf, length, bufsize, |