summaryrefslogtreecommitdiff
path: root/source3/lib/smbconf
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-07 15:06:41 +0200
committerMichael Adam <obnox@samba.org>2008-04-10 01:28:55 +0200
commit015e424bf129dfb583ce9d46430cefe228c8ed30 (patch)
tree92278539c2c058366e5732b44fe2bd16b7947191 /source3/lib/smbconf
parent77fce35417f54e9a8edfb88c5e2cf177a543cb8f (diff)
downloadsamba-015e424bf129dfb583ce9d46430cefe228c8ed30.tar.gz
samba-015e424bf129dfb583ce9d46430cefe228c8ed30.tar.bz2
samba-015e424bf129dfb583ce9d46430cefe228c8ed30.zip
libsmbconf: reorder prototypes in smbconf_private.h
Michael (This used to be commit 0e932a0981ef52ff9d236b887eb8177304a99915)
Diffstat (limited to 'source3/lib/smbconf')
-rw-r--r--source3/lib/smbconf/smbconf_private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/smbconf/smbconf_private.h b/source3/lib/smbconf/smbconf_private.h
index e08a2b186a..85b529ac85 100644
--- a/source3/lib/smbconf/smbconf_private.h
+++ b/source3/lib/smbconf/smbconf_private.h
@@ -59,12 +59,12 @@ struct smbconf_ctx {
void *data; /* private data for use in backends */
};
+WERROR smbconf_init(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx,
+ const char *path, struct smbconf_ops *ops);
+
WERROR smbconf_add_string_to_array(TALLOC_CTX *mem_ctx,
char ***array,
uint32_t count,
const char *string);
-WERROR smbconf_init(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx,
- const char *path, struct smbconf_ops *ops);
-
#endif