summaryrefslogtreecommitdiffstats
path: root/ax25ipd/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'ax25ipd/config.c')
-rw-r--r--ax25ipd/config.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ax25ipd/config.c b/ax25ipd/config.c
index e0db591..ecbd1c2 100644
--- a/ax25ipd/config.c
+++ b/ax25ipd/config.c
@@ -87,7 +87,8 @@ void config_read(char *f)
else
fname=f;
- if ((cf = fopen(fname, "r")) == NULL) {
+ cf = fopen(fname, "r");
+ if (cf == NULL) {
fprintf(stderr,
"Config file %s not found or could not be opened\n",
fname);
@@ -99,7 +100,8 @@ void config_read(char *f)
while (fgets(buf, 255, cf) != NULL) {
strcpy(cbuf, buf);
lineno++;
- if ((e = parse_line(buf)) < 0) {
+ e = parse_line(buf);
+ if (e < 0) {
fprintf(stderr, "Config error at line %d: ",
lineno);
if (e == -1)