Yann E. MORIN" 1bbab712ab scripts/wrapper: fix wrong test when checking access to the reall tool
In C, the proper syntax for a bit-wise OR is a single '|', not two.

It worked so far because all was well:
- X_OK == 1
- R_OK||X_OK == 1
- the file we searched for had the x-bit set
-> access( file, R_OK||X_OK ) worked
- inicidentally, the file we searched for also had the r-bit set,
  but we were not testing that in fact.
(transplanted from eebcaff6626f09af4f69b7b06f1246a06769d0af)
2010-06-22 23:49:23 +02:00
..
2009-11-22 11:36:41 +01:00
2009-10-30 20:08:44 +01:00
2009-05-13 18:10:47 +00:00
2009-08-02 16:45:43 +02:00