diff options
author | Volker Lendecke <vl@samba.org> | 2009-09-14 22:47:31 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-14 22:48:45 +0200 |
commit | e94361e1e29d015e9cdfde47f7163d1dd7bb596a (patch) | |
tree | d8953cda4ae64e87766d565e451b79fd674ba9a7 /source3/modules/vfs_catia.c | |
parent | d3a6914e3b3f04b0f2ec2c27995cb7e3975f5d27 (diff) | |
download | samba-e94361e1e29d015e9cdfde47f7163d1dd7bb596a.tar.gz |
s3:vfs_catia: Make some fns static
Diffstat (limited to 'source3/modules/vfs_catia.c')
-rw-r--r-- | source3/modules/vfs_catia.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c index 279ab596fba..0917812ee23 100644 --- a/source3/modules/vfs_catia.c +++ b/source3/modules/vfs_catia.c @@ -103,8 +103,8 @@ static bool build_ranges(struct char_mappings **cmaps, return True; } -struct share_mapping_entry *get_srt(connection_struct *conn, - struct share_mapping_entry **global) +static struct share_mapping_entry *get_srt(connection_struct *conn, + struct share_mapping_entry **global) { struct share_mapping_entry *share; @@ -119,7 +119,7 @@ struct share_mapping_entry *get_srt(connection_struct *conn, return share; } -struct share_mapping_entry *add_srt(int snum, const char **mappings) +static struct share_mapping_entry *add_srt(int snum, const char **mappings) { char *tmp; |