diff options
author | Jeremy Allison <jra@samba.org> | 2003-05-07 21:40:11 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-05-07 21:40:11 +0000 |
commit | 075695ee7f99c70ec9c65aa91579a808939f58ba (patch) | |
tree | 51af05d1f18b97f40e040c0ab9215e30d478814a /source3 | |
parent | 57f84a5816886fe8c3d4bd65d23f32c04c2bc2c2 (diff) | |
download | samba-075695ee7f99c70ec9c65aa91579a808939f58ba.tar.gz samba-075695ee7f99c70ec9c65aa91579a808939f58ba.tar.bz2 samba-075695ee7f99c70ec9c65aa91579a808939f58ba.zip |
Fix irritating typo - non arg functions should be fn(void).
Jeremy.
(This used to be commit 395dfd196cf4bcd432a4895d3dd09fefd46cd6d8)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/passdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index c3afcbc7d9..3fef3ea745 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -26,7 +26,7 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_PASSDB -const char *get_global_sam_name() +const char *get_global_sam_name(void) { if ((lp_server_role() == ROLE_DOMAIN_PDC) || (lp_server_role() == ROLE_DOMAIN_BDC)) { return lp_workgroup(); |