From: Jeremy Allison Date: Thu, 21 May 2020 18:03:14 +0000 (-0700) Subject: s3: VFS: catia: Change saved_errno to catia_saved_errno in a macro. X-Git-Tag: ldb-2.2.0~399 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9ef244e78599c13500edce7180bf17a9e1f7f47;p=thirdparty%2Fsamba.git s3: VFS: catia: Change saved_errno to catia_saved_errno in a macro. This is a common variable name. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c index 6b89974a7ae..5c8dfd7d9a9 100644 --- a/source3/modules/vfs_catia.c +++ b/source3/modules/vfs_catia.c @@ -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,