diff options
author | Salvatore Sanfilippo <antirez@gmail.com> | 2020-01-08 13:06:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 13:06:06 +0100 |
commit | 2ee4f9f34e66b30d0623f1adb6a860860891f94d (patch) | |
tree | 6f507df06d86879ea06fee9cad5b540ee9df15d8 /src | |
parent | c89ec5af1e79ce44b930d171d4cacac21dddc990 (diff) | |
parent | fda2bf9c92fe1c4adbb5c968b9b234710a85a7ed (diff) | |
download | redis-2ee4f9f34e66b30d0623f1adb6a860860891f94d.tar.gz |
Merge pull request #6748 from hwware/typofix
typo fix in acl.c
Diffstat (limited to 'src')
-rw-r--r-- | src/acl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -183,12 +183,12 @@ int ACLListMatchSds(void *a, void *b) { return sdscmp(a,b) == 0; } -/* Method to free list elements from ACL users password/ptterns lists. */ +/* Method to free list elements from ACL users password/patterns lists. */ void ACLListFreeSds(void *item) { sdsfree(item); } -/* Method to duplicate list elements from ACL users password/ptterns lists. */ +/* Method to duplicate list elements from ACL users password/patterns lists. */ void *ACLListDupSds(void *item) { return sdsdup(item); } |