On Thu, 19 Jul 2012 11:38:28 +0200
Luk Claes <[email protected]> wrote:

> When access() fails, use errno for a sensible error message.
> 
> Signed-off-by: Luk Claes <[email protected]>
> ---
>  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;
>       }
>  

Looks correct.

Thanks!
-- 
Jeff Layton <[email protected]>
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to