chore(sogo-tool): Fix delete ALL acl SQL issue

This commit is contained in:
smizrahi
2023-05-02 17:44:29 +02:00
parent dd60e016c6
commit 479d29a6e2

View File

@@ -366,7 +366,7 @@ typedef enum
NSString *qs, *path;
if ([theUser isEqualToString: @"ALL"])
qs = [NSString stringWithFormat: @"c_uid LIKE '\%'", theUser];
qs = [NSString stringWithFormat: @"c_uid LIKE '%%'"];
else
qs = [NSString stringWithFormat: @"c_uid = '%@'", theUser];