diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-19 20:16:43 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-19 20:16:43 +0000 |
commit | a63fa73d7327e88ec9c08b63a8ff4980ec043e52 (patch) | |
tree | 63bc474ba4252d7dfda99d9b7ac368490fecfe63 /docs | |
parent | 2ffd83f3f0f91aef99cc8d6396dde917c9adf24f (diff) | |
download | samba-a63fa73d7327e88ec9c08b63a8ff4980ec043e52.tar.gz samba-a63fa73d7327e88ec9c08b63a8ff4980ec043e52.tar.bz2 samba-a63fa73d7327e88ec9c08b63a8ff4980ec043e52.zip |
Fix uncompleted sentence
(This used to be commit a14b7fcd493b89e6ea6bcc889a2d2f24fc72a5fc)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docbook/devdoc/modules.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/docbook/devdoc/modules.sgml b/docs/docbook/devdoc/modules.sgml index 098044ddfe..de43813410 100644 --- a/docs/docbook/devdoc/modules.sgml +++ b/docs/docbook/devdoc/modules.sgml @@ -97,8 +97,8 @@ should check again if the module has been registered. <para> Each module has an initialisation function. For modules that are -included with samba this name is '<replaceable>subsystem</replaceable>_<replaceable>backend</replaceable>_init'. For external modules (that will never be built-in, but only available as a module) this name is always 'module_init'. -The prototype for this function is: +included with samba this name is '<replaceable>subsystem</replaceable>_<replaceable>backend</replaceable>_init'. For external modules (that will never be built-in, but only available as a module) this name is always 'module_init'. (In the case of modules included with samba, the configure system will add a #define subsystem_backend_init() module_init()). +The prototype for these functions is: </para> <para><programlisting> @@ -106,7 +106,7 @@ int module_init(void); </programlisting></para> <para>This function should call one or more -registration The function should return non-zero on success and zero on +registration functions. The function should return non-zero on success and zero on failure.</para> <para>For example, pdb_ldap_init() contains: </para> |