From: Bram Moolenaar Date: Fri, 9 Oct 2020 21:04:47 +0000 (+0200) Subject: patch 8.2.1818: SE Linux: deprecation warning for security_context_t X-Git-Tag: v8.2.1818 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8956023920bb1b6f9c381739e59b9ddab4bf7798;p=vim patch 8.2.1818: SE Linux: deprecation warning for security_context_t Problem: SE Linux: deprecation warning for security_context_t. Solution: Use "char *" instead. (James McCoy, closes #7093) --- diff --git a/src/os_unix.c b/src/os_unix.c index 2afe1ba93..40df6b727 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2832,8 +2832,10 @@ mch_copy_sec(char_u *from_file, char_u *to_file) if (selinux_enabled > 0) { - security_context_t from_context = NULL; - security_context_t to_context = NULL; + // Use "char *" instead of "security_context_t" to avoid a deprecation + // warning. + char *from_context = NULL; + char *to_context = NULL; if (getfilecon((char *)from_file, &from_context) < 0) { diff --git a/src/version.c b/src/version.c index 5adfd9678..5fdfeeaf4 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1818, /**/ 1817, /**/