scripts/wrapper.c
changeset 2138 2242d87c5404
parent 1964 f02cfced8f55
     1.1 --- a/scripts/wrapper.c	Sat May 22 12:37:02 2010 +0200
     1.2 +++ b/scripts/wrapper.c	Thu Oct 07 22:37:06 2010 +0200
     1.3 @@ -71,7 +71,7 @@
     1.4        if( stat( testname, &st ) == 0 ) {
     1.5          /* OK, exists. Is it a regular file, or a
     1.6           * symlink, which the current user may execute? */
     1.7 -        if( S_ISREG( st.st_mode ) && ! access( testname, X_OK || R_OK ) ) {
     1.8 +        if( S_ISREG( st.st_mode ) && ! access( testname, X_OK | R_OK ) ) {
     1.9            fullname = strdup( testname );
    1.10            break;
    1.11          }