summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-30 22:55:12 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-30 22:55:12 +0000
commitf4307200ac338202bc4680cd25fcbac83620ae95 (patch)
tree2d7f2e9b015ebe691380d9738e77d5d0324ef341 /source4/lib
parentbab78d286bf60047dda0d269c401b09877bae9c3 (diff)
downloadsamba-f4307200ac338202bc4680cd25fcbac83620ae95.tar.gz
samba-f4307200ac338202bc4680cd25fcbac83620ae95.tar.bz2
samba-f4307200ac338202bc4680cd25fcbac83620ae95.zip
"subsystems" should be static
(This used to be commit 64cf9b3fd3ad971973f6f1d73b924af225252837)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/module.c b/source4/lib/module.c
index c6c4ef6979..ffd6a38c77 100644
--- a/source4/lib/module.c
+++ b/source4/lib/module.c
@@ -123,7 +123,7 @@ struct subsystem {
struct subsystem *prev, *next;
};
-struct subsystem *subsystems = NULL;
+static struct subsystem *subsystems = NULL;
void register_subsystem(const char *name, register_backend_function callback)
{