From 3a13c979ed718f9455bc501eb3c124c5a99e2a57 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Thu, 26 Mar 1998 02:56:39 +0000 Subject: [PATCH] Add parenthesis around boolean expression. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4671 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/ftp/ftp/ruserpass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appl/ftp/ftp/ruserpass.c b/appl/ftp/ftp/ruserpass.c index 22cee4b99..eea5b0320 100644 --- a/appl/ftp/ftp/ruserpass.c +++ b/appl/ftp/ftp/ruserpass.c @@ -161,7 +161,8 @@ next: fclose(cfile); return (0); } - while ((c=getc(cfile)) != EOF && c == ' ' || c == '\t'); + while ((c=getc(cfile)) != EOF && + (c == ' ' || c == '\t')); if (c == EOF || c == '\n') { printf("Missing macdef name argument.\n"); goto bad;