Skip to content

Commit

Permalink
Merge pull request #27 from bhill-slac/epics-version-macro-fix
Browse files Browse the repository at this point in the history
Fix EPICS_VERSION macro test for EPICS 7
  • Loading branch information
ralphlange authored Sep 16, 2019
2 parents f34048b + db3ddce commit 8f13251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gateAs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -813,8 +813,8 @@ void gateAs::report(FILE* fd)

if(rules_installed==aitTrue) fprintf(fd,"Access Rules are installed.\n");
if(use_default_rules==aitTrue) fprintf(fd,"Using default access rules.\n");

#if (EPICS_REVISION == 14 && EPICS_MODIFICATION >= 6) || EPICS_REVISION > 14
#if (EPICS_VERSION > 3 || (EPICS_REVISION == 14 && EPICS_MODIFICATION >= 6) || EPICS_REVISION > 14)
// Dumping to a file pointer became available sometime during 3.14.5.
fprintf(fd,"\n============================ Access Security Dump =========================\n");
asDumpFP(fd,NULL,NULL,TRUE);
Expand Down

0 comments on commit 8f13251

Please sign in to comment.