We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2264008 commit 02e802bCopy full SHA for 02e802b
src/fileio.c
@@ -712,8 +712,11 @@ readfile(
712
713
if (mch_stat((char *)swap_fname, &swap_st) >= 0
714
&& st.st_gid != swap_st.st_gid
715
+# ifdef HAVE_FCHOWN
716
&& fchown(curbuf->b_ml.ml_mfp->mf_fd, -1, st.st_gid)
- == -1)
717
+# endif
718
+ == -1
719
+ )
720
swap_mode &= 0600;
721
}
722
src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
762
763
static int included_patches[] =
764
{ /* Add new patch number below this line */
765
+/**/
766
+ 1737,
767
/**/
768
1736,
769
0 commit comments