scripts/wrapper.c
branch1.7
changeset 1998 110ba570a70a
parent 1504 4e8dd617a1ca
     1.1 --- a/scripts/wrapper.c	Sun Aug 30 19:58:41 2009 +0200
     1.2 +++ b/scripts/wrapper.c	Tue Jun 22 23:49:23 2010 +0200
     1.3 @@ -66,7 +66,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          }