summaryrefslogtreecommitdiff
path: root/source4/utils
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-12-23 04:09:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:36 -0500
commita42bbe3cdffe8f0cfdf19583c981f1a18e4cc331 (patch)
tree8cd5d4977be9086369bdd37ffa903f142561828c /source4/utils
parent5b07d37110091ebcc766454aad7be05683cdcb5f (diff)
downloadsamba-a42bbe3cdffe8f0cfdf19583c981f1a18e4cc331.tar.gz
samba-a42bbe3cdffe8f0cfdf19583c981f1a18e4cc331.tar.bz2
samba-a42bbe3cdffe8f0cfdf19583c981f1a18e4cc331.zip
r4341: Fix const warning.
(This used to be commit d8b1ba93a8ed0d5d01cb05b1c14353a0eca4de3e)
Diffstat (limited to 'source4/utils')
-rw-r--r--source4/utils/net/net_password.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/net/net_password.c b/source4/utils/net/net_password.c
index 14b48e301e..8828b960ee 100644
--- a/source4/utils/net/net_password.c
+++ b/source4/utils/net/net_password.c
@@ -165,7 +165,7 @@ static int net_password_set_help(struct net_context *ctx, int argc, const char *
return 0;
}
-static const struct net_functable const net_password_functable[] = {
+static const struct net_functable net_password_functable[] = {
{"change", net_password_change, net_password_change_usage, net_password_change_help},
{"set", net_password_set, net_password_set_usage, net_password_set_help},
{NULL, NULL}