s3: VFS: catia: Change saved_errno to catia_saved_errno in a macro.
authorJeremy Allison <jra@samba.org>
Thu, 21 May 2020 18:03:14 +0000 (11:03 -0700)
committerJeremy Allison <jra@samba.org>
Thu, 21 May 2020 20:38:32 +0000 (20:38 +0000)
This is a common variable name.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/modules/vfs_catia.c

index 6b89974a7ae6c393d5c52f37c4dccbb6679b20ed..5c8dfd7d9a9efa23bd364d5bfc07246d1a5e997d 100644 (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,