2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Undo an incorrect int -> bool conversion.

This commit is contained in:
Todd C. Miller
2012-03-28 10:51:22 -04:00
parent a142d780c7
commit ea2fd83b35

View File

@@ -633,7 +633,8 @@ static bool
match_expr(struct search_node *head, struct log_info *log)
{
struct search_node *sn;
bool matched = true, rc;
bool matched = true;
int rc;
debug_decl(match_expr, SUDO_DEBUG_UTIL)
for (sn = head; sn; sn = sn->next) {