Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a Solaris build issue in src/OVAL/probes/unix/file.c
  • Loading branch information
jacobvar authored and Martin Preisler committed Feb 20, 2015
1 parent 681f365 commit 746920b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OVAL/probes/unix/file.c
Expand Up @@ -261,7 +261,7 @@ static SEXP_t *has_extended_acl(const char *path)
}
return (has_acl == 1) ? gr_true : gr_false;
#elif defined(OS_SOLARIS)
return acl_trivial(st_path) ? gr_true : gr_false;
return acl_trivial(path) ? gr_true : gr_false;
#else
return NULL;
#endif
Expand Down

0 comments on commit 746920b

Please sign in to comment.