Method for passwords/pattern comparison used for the user->passwords list * so that we can search for items with listSearchKey(). */
| 223 | /* Method for passwords/pattern comparison used for the user->passwords list |
| 224 | * so that we can search for items with listSearchKey(). */ |
| 225 | int ACLListMatchSds(void *a, void *b) { |
| 226 | return sdscmp(a,b) == 0; |
| 227 | } |
| 228 | |
| 229 | /* Method to free list elements from ACL users password/patterns lists. */ |
| 230 | void ACLListFreeSds(void *item) { |