From 230cd0abed77e463262eab59bbf6705b76f9adc2 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Fri, 30 Oct 2015 10:15:28 +0200 Subject: [PATCH] Fix syntax error in MacGraphics conditional part --- src/options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/options.c b/src/options.c index b9da0d956..9e949de54 100644 --- a/src/options.c +++ b/src/options.c @@ -3247,8 +3247,8 @@ boolean tinitial, tfrom_file; if (duplicate) complain_about_duplicate(opts, 1); if (!negated) { - if (symset[PRIMARY]) - .name badflag = TRUE; + if (symset[PRIMARY].name) + badflag = TRUE; else { symset[PRIMARY].name = (char *) alloc(strlen(fullname) + 1); Strcpy(symset[PRIMARY].name, fullname);