summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-02-20 22:26:28 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-02-20 22:26:28 +0000
commit8d8a8c9633ea04d269d70b1fa8f4393cc73f7bbd (patch)
tree3bc7add2e13dac3e4e6a671efe524afaee4e6e44 /source3/include
parent1009ef3e37c82682e9c2c4c63bc7407420f20af8 (diff)
downloadsamba-8d8a8c9633ea04d269d70b1fa8f4393cc73f7bbd.tar.gz
samba-8d8a8c9633ea04d269d70b1fa8f4393cc73f7bbd.tar.bz2
samba-8d8a8c9633ea04d269d70b1fa8f4393cc73f7bbd.zip
Make init_module() and thus smb_load_module() return an int.
modules/developer.c: init_module() should return an int (This used to be commit 7f59703550378ff2333e3c851bf1a77037510abd)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index f96a19954a..71051e341e 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -1721,6 +1721,6 @@ extern struct poptOption popt_common_netbios_name[];
extern struct poptOption popt_common_log_base[];
/* Module support */
-typedef NTSTATUS (init_module_function) (void);
+typedef int (init_module_function) (void);
#endif /* _SMB_H */