1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

s3:net: make idmap_store_secret static.

Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Sun Jan  2 13:41:07 CET 2011 on sn-devel-104
This commit is contained in:
Michael Adam 2010-12-08 00:43:34 +01:00
parent 7f256a740c
commit 45cb9bba37
2 changed files with 4 additions and 6 deletions

View File

@ -289,9 +289,10 @@ static int net_idmap_set(struct net_context *c, int argc, const char **argv)
d_printf("%s\n", _("Not implemented yet"));
return -1;
}
bool idmap_store_secret(const char *backend,
const char *domain, const char *identity,
const char *secret)
static bool idmap_store_secret(const char *backend,
const char *domain,
const char *identity,
const char *secret)
{
char *tmp;
int r;

View File

@ -86,9 +86,6 @@ int net_help(struct net_context *c, int argc, const char **argv);
/* The following definitions come from utils/net_idmap.c */
bool idmap_store_secret(const char *backend,
const char *domain, const char *identity,
const char *secret);
int net_help_idmap(struct net_context *c, int argc, const char **argv);
int net_idmap(struct net_context *c, int argc, const char **argv);