From 69102b3b5cfcd3d40a42ead2d26f312c103eea7a Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 9 Mar 2012 17:56:21 +0000 Subject: [PATCH] Add some parentheses. No intended functional change. --- actions.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/actions.c b/actions.c index 856c4d79..8d9e5dee 100644 --- a/actions.c +++ b/actions.c @@ -1,4 +1,4 @@ -const char actions_rcs[] = "$Id: actions.c,v 1.78 2012/02/29 19:33:07 fabiankeil Exp $"; +const char actions_rcs[] = "$Id: actions.c,v 1.79 2012/03/09 16:23:50 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/actions.c,v $ @@ -1408,9 +1408,9 @@ static int load_one_actions_file(struct client_state *csp, int fileid) "While loading actions file '%s': invalid line (%lu): %s", csp->config->actions_file[fileid], linenum, buf); } - else if ( atoi(fields[0]) > VERSION_MAJOR - || (num_fields > 1 && atoi(fields[1]) > VERSION_MINOR) - || (num_fields > 2 && atoi(fields[2]) > VERSION_POINT)) + else if ( (atoi(fields[0]) > VERSION_MAJOR) + || ((num_fields) > 1 && (atoi(fields[1]) > VERSION_MINOR)) + || ((num_fields) > 2 && (atoi(fields[2]) > VERSION_POINT))) { fclose(fp); log_error(LOG_LEVEL_FATAL, -- 2.39.2