|
From: Scott W. <sw...@ch...> - 2008-02-17 21:44:50
|
> Scott, can you compile your own with this change to datafile.c: replace
> the code around line 1293
>
> !S_ISREG(statbuf.st_mode) && !S_ISFIFO(statbuf.st_mode)) {
>
> with
>
> S_ISDIR(statbuf.st_mode)) {
>
> and test?
- !S_ISREG(statbuf.st_mode) && !S_ISFIFO(statbuf.st_mode)) {
- os_error(name_token, "\"%s\" is not a regular file or pipe",
+ S_ISDIR(statbuf.st_mode)) {
+ os_error(name_token, "\"%s\" is a directory",
works for me.
|