msg when export dir not writable

This commit is contained in:
tTh
2024-11-11 17:24:03 +01:00
förälder 2147d4b164
incheckning 28453e862a

Visa fil

@@ -43,6 +43,7 @@ foo = access(path, W_OK);
fprintf(stderr, " access '%s' = %d\n", path, foo); fprintf(stderr, " access '%s' = %d\n", path, foo);
#endif #endif
if (0 != foo) { if (0 != foo) {
if (verbosity) fprintf(stderr, "%s: can't write\n", path);
return 0; return 0;
} }