smbd: Make sys_disk_free static
authorChristof Schmitt <cs@samba.org>
Tue, 13 Aug 2019 20:45:48 +0000 (13:45 -0700)
committerChristof Schmitt <cs@samba.org>
Wed, 14 Aug 2019 17:47:33 +0000 (17:47 +0000)
The function is only called from the same file.

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Christof Schmitt <cs@samba.org>
Autobuild-Date(master): Wed Aug 14 17:47:33 UTC 2019 on sn-devel-184

source3/smbd/dfree.c
source3/smbd/proto.h

index 5c6c0fb00aebe8c4e1713e644954fbedf931f5d7..31900c847f114f2573ecf29f4ab53f688924a758 100644 (file)
@@ -51,8 +51,11 @@ static void disk_norm(uint64_t *bsize, uint64_t *dfree, uint64_t *dsize)
  Return number of 1K blocks available on a path and total number.
 ****************************************************************************/
 
-uint64_t sys_disk_free(connection_struct *conn, struct smb_filename *fname,
-                      uint64_t *bsize, uint64_t *dfree, uint64_t *dsize)
+static uint64_t sys_disk_free(connection_struct *conn,
+                             struct smb_filename *fname,
+                             uint64_t *bsize,
+                             uint64_t *dfree,
+                             uint64_t *dsize)
 {
        uint64_t dfree_retval;
        uint64_t dfree_q = 0;
index 5947d9ab6f234429d01be7b22402f718c5f3fbc1..ce49deafed3ca62c13d3f3ef8ab3e481615ae431 100644 (file)
@@ -171,8 +171,6 @@ bool connections_snum_used(struct smbd_server_connection *unused, int snum);
 
 /* The following definitions come from smbd/dfree.c  */
 
-uint64_t sys_disk_free(connection_struct *conn, struct smb_filename *fname,
-                      uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
 uint64_t get_dfree_info(connection_struct *conn, struct smb_filename *fname,
                        uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
 void flush_dfree_cache(void);