From 55ed1d59455566d90a03e7123fbf7a05a4bd4539 Mon Sep 17 00:00:00 2001 From: Herb Lewis Date: Tue, 19 Dec 2006 20:16:52 +0000 Subject: r20261: merge 20260 from samba_3_0_24 clean up a bunch of no previous prototype warnings (This used to be commit c60687db112405262adf26dbf267804b04074e67) --- source3/client/umount.cifs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/client') diff --git a/source3/client/umount.cifs.c b/source3/client/umount.cifs.c index e762be8f06..3869e3439f 100644 --- a/source3/client/umount.cifs.c +++ b/source3/client/umount.cifs.c @@ -138,7 +138,7 @@ static int umount_check_perm(char * dir) return rc; } -int lock_mtab(void) +static int lock_mtab(void) { int rc; @@ -151,12 +151,12 @@ int lock_mtab(void) } -void unlock_mtab(void) +static void unlock_mtab(void) { unlink(MOUNTED_LOCK); } -int remove_from_mtab(char * mountpoint) +static int remove_from_mtab(char * mountpoint) { int rc; int num_matches; -- cgit