From 0215be619ffd3d3427a6e8c39aa07aac02380cdf Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 9 Oct 2007 22:32:53 +0000 Subject: use macro argument --- usr.sbin/relayd/parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/relayd') diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y index 67411ba6c02..fa1103b827a 100644 --- a/usr.sbin/relayd/parse.y +++ b/usr.sbin/relayd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.60 2007/10/05 15:50:56 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.61 2007/10/09 22:32:52 deraadt Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard @@ -1417,7 +1417,7 @@ top: } #define allowed_to_end_number(x) \ - (isspace(x) || c == ')' || c ==',' || c == '/' || c == '}') + (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}') if (c == '-' || isdigit(c)) { do { -- cgit v1.2.3