From 81e40d283ec09f215adb082e403d35dd64a0f5f8 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 21 Nov 2006 15:45:29 +0000 Subject: [PATCH] Fixed wrong parentheses, thanks to Jan Tomasik SVN revision: 1759 --- NT/elogd.vcproj | 2 +- src/elogd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NT/elogd.vcproj b/NT/elogd.vcproj index dee18e65..2c4092a0 100755 --- a/NT/elogd.vcproj +++ b/NT/elogd.vcproj @@ -193,7 +193,7 @@ RelativePath="..\themes\default\default.css"> + RelativePath="..\scripts\elcode.js"> diff --git a/src/elogd.c b/src/elogd.c index 57466c74..5da252d1 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -8386,7 +8386,7 @@ void attrib_from_param(int n_attr, char attrib[MAX_N_ATTR][NAME_LENGTH]) for (i = 0; i < n_attr; i++) { strcpy(ua, attr_list[i]); btou(ua); - if ((attr_flags[i] & (AF_MULTI) | AF_MUSERLIST)) { + if (attr_flags[i] & (AF_MULTI | AF_MUSERLIST)) { attrib[i][0] = 0; first = 1; for (j = 0; j < MAX_N_LIST; j++) {