1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r4341: Fix const warning.

This commit is contained in:
Tim Potter 2004-12-23 04:09:25 +00:00 committed by Gerald (Jerry) Carter
parent cef0d1eb29
commit d8b1ba93a8

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}