]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
mountd: make local functions in v4root.c static
authorChuck Lever <chuck.lever@oracle.com>
Sat, 23 Mar 2013 12:03:56 +0000 (08:03 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 25 Mar 2013 14:09:09 +0000 (10:09 -0400)
Clean up.  set_pseudofs_security() and pseudofs_update() have no
call sites outside of v4root.c, and there are no header declarations
for either function.  Define both as static.

Acked-by: J. Bruce Fields <bfields@fieldses.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/mountd/v4root.c

index 726b50dc61093a2fa926d131131ed59860b1ae8c..34d098ad28d18ee3441f2a068b6acdae8122ea5d 100644 (file)
@@ -55,7 +55,8 @@ static nfs_export pseudo_root = {
        .m_warned = 0,
 };
 
        .m_warned = 0,
 };
 
-void set_pseudofs_security(struct exportent *pseudo, struct exportent *source)
+static void
+set_pseudofs_security(struct exportent *pseudo, struct exportent *source)
 {
        struct sec_entry *se;
        int i;
 {
        struct sec_entry *se;
        int i;
@@ -121,7 +122,8 @@ v4root_support(void)
        return 0;
 }
 
        return 0;
 }
 
-int pseudofs_update(char *hostname, char *path, nfs_export *source)
+static int
+pseudofs_update(char *hostname, char *path, nfs_export *source)
 {
        nfs_export *exp;
 
 {
        nfs_export *exp;