diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-02 11:06:42 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-02 11:06:42 +0000 |
commit | 4392be0a471df0e4f4a8c690dfc0754b1f9d4e05 (patch) | |
tree | e9c635f236894e9e50568f02bcc45b59758b7c2f /source3/lib/module.c | |
parent | a557af96e9f232e2fa012850e0725fde353521bd (diff) | |
download | samba-4392be0a471df0e4f4a8c690dfc0754b1f9d4e05.tar.gz samba-4392be0a471df0e4f4a8c690dfc0754b1f9d4e05.tar.bz2 samba-4392be0a471df0e4f4a8c690dfc0754b1f9d4e05.zip |
Add const
(This used to be commit 7dccd144b74d8c752a4b8c80fa5b3e6b2d11eaa2)
Diffstat (limited to 'source3/lib/module.c')
-rw-r--r-- | source3/lib/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c index 700de56953..763a5c2b2d 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -127,7 +127,7 @@ void init_modules(void) /************************************************************************* * This functions /path/to/foobar.so -> foobar ************************************************************************/ -void module_path_get_name(char *path, pstring name) +void module_path_get_name(const char *path, pstring name) { char *s; |