summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2020-04-08 10:54:18 +0200
committerantirez <antirez@gmail.com>2020-04-08 10:56:47 +0200
commit96688aa6462f330dfd4780d222ce4806d766ff33 (patch)
tree3bba4fd122e77b27e186860cdf845a3cd5858bbf
parenta6350f717d0231959492134c0ea411bd94a64bae (diff)
downloadredis-96688aa6462f330dfd4780d222ce4806d766ff33.tar.gz
Fix ACL HELP table missing comma.
-rw-r--r--src/acl.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/acl.c b/src/acl.c
index 27f4bdb84..733988013 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -1847,18 +1847,18 @@ void aclCommand(client *c) {
}
} else if (!strcasecmp(sub,"help")) {
const char *help[] = {
-"LOAD -- Reload users from the ACL file.",
-"SAVE -- Save the current config to the ACL file."
-"LIST -- Show user details in config file format.",
-"USERS -- List all the registered usernames.",
-"SETUSER <username> [attribs ...] -- Create or modify a user.",
-"GETUSER <username> -- Get the user details.",
-"DELUSER <username> [...] -- Delete a list of users.",
-"CAT -- List available categories.",
-"CAT <category> -- List commands inside category.",
-"GENPASS -- Generate a secure user password.",
-"WHOAMI -- Return the current connection username.",
-"LOG [<count> | RESET] -- Show the ACL log entries.",
+"LOAD -- Reload users from the ACL file.",
+"SAVE -- Save the current config to the ACL file.",
+"LIST -- Show user details in config file format.",
+"USERS -- List all the registered usernames.",
+"SETUSER <username> [attribs ...] -- Create or modify a user.",
+"GETUSER <username> -- Get the user details.",
+"DELUSER <username> [...] -- Delete a list of users.",
+"CAT -- List available categories.",
+"CAT <category> -- List commands inside category.",
+"GENPASS -- Generate a secure user password.",
+"WHOAMI -- Return the current connection username.",
+"LOG [<count> | RESET] -- Show the ACL log entries.",
NULL
};
addReplyHelp(c,help);