1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: VFS: catia: Change saved_errno to catia_saved_errno in a macro.

This is a common variable name.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Jeremy Allison 2020-05-21 11:03:14 -07:00
parent 01d949bc95
commit f9ef244e78

View File

@ -438,9 +438,9 @@ static int catia_fetch_fsp_pre_next(TALLOC_CTX *mem_ctx,
}
#define CATIA_FETCH_FSP_POST_NEXT(_cc, fsp) do { \
int saved_errno = errno; \
int catia_saved_errno = errno; \
catia_fetch_fsp_post_next((_cc), (fsp), __func__); \
errno = saved_errno; \
errno = catia_saved_errno; \
} while(0)
static void catia_fetch_fsp_post_next(struct catia_cache **_cc,