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

r4341: Fix const warning.

(This used to be commit d8b1ba93a8ed0d5d01cb05b1c14353a0eca4de3e)
This commit is contained in:
Tim Potter 2004-12-23 04:09:25 +00:00 committed by Gerald (Jerry) Carter
parent 5b07d37110
commit a42bbe3cdf

View File

@ -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}