diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-30 22:55:12 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-30 22:55:12 +0000 |
commit | f4307200ac338202bc4680cd25fcbac83620ae95 (patch) | |
tree | 2d7f2e9b015ebe691380d9738e77d5d0324ef341 /source4/lib | |
parent | bab78d286bf60047dda0d269c401b09877bae9c3 (diff) | |
download | samba-f4307200ac338202bc4680cd25fcbac83620ae95.tar.gz samba-f4307200ac338202bc4680cd25fcbac83620ae95.tar.xz samba-f4307200ac338202bc4680cd25fcbac83620ae95.zip |
"subsystems" should be static
(This used to be commit 64cf9b3fd3ad971973f6f1d73b924af225252837)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/module.c b/source4/lib/module.c index c6c4ef69794..ffd6a38c770 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) { |