From 46a6e1f0de1a0c366f4d80289804d0638fcede8c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 2 Apr 2003 17:10:05 +0000 Subject: Add static (This used to be commit 674d0ca5d84b64be395fbeff773c8dd8aeb1518c) --- source3/passdb/pdb_interface.c | 2 +- source3/smbd/vfs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 95f587b076..8adcd9dbfa 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -61,7 +61,7 @@ BOOL smb_register_passdb(const char *name, pdb_init_function init, int version) return True; } -struct pdb_init_function_entry *pdb_find_backend_entry(const char *name) +static struct pdb_init_function_entry *pdb_find_backend_entry(const char *name) { struct pdb_init_function_entry *entry = backends; pstring stripped; diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index adbde4994d..06aca51322 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -138,7 +138,7 @@ static struct vfs_ops default_vfs_ops = { maintain the list of available backends ****************************************************************************/ -struct vfs_init_function_entry *vfs_find_backend_entry(const char *name) +static struct vfs_init_function_entry *vfs_find_backend_entry(const char *name) { struct vfs_init_function_entry *entry = backends; pstring stripped; -- cgit