When access() fails, use errno for a sensible error message. Signed-off-by: Luk Claes <luk@xxxxxxxxxx> --- mount.cifs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mount.cifs.c b/mount.cifs.c index 6f3f382..f47f416 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -590,6 +590,7 @@ static int open_cred_file(char *file_name, i = access(file_name, R_OK); if (i) { toggle_dac_capability(0, 0); + i = errno; goto return_i; } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html