|
Hack Tool Repository
ncpfs |
Comments:
|
On systems with gcc version 4, you will get the error message: ncplib.c:2424: error: invalid storage class for function get_argument You will need to remove the static declaration from the get_argument function. The function declaration should thus be: int get_argument(int arg_no, const char **target) { or use the following command: sed -i s/static int get_argument/int get_argument/g lib/ncplib.c by marc at 2007-11-10 19:24:29 |
