diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-01-22 21:38:31 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-01-22 21:38:31 +0200 |
commit | 7a49c9d615d91efc1e65ef1d1367b1a5c076ac96 (patch) | |
tree | da7083f2c92fc9900bfd4d3485b4704a53a84816 /lib-src/update-game-score.c | |
parent | e2a095b16ffb909bf835516098bac8ae6f075992 (diff) | |
download | emacs-7a49c9d615d91efc1e65ef1d1367b1a5c076ac96.tar.gz emacs-7a49c9d615d91efc1e65ef1d1367b1a5c076ac96.tar.bz2 emacs-7a49c9d615d91efc1e65ef1d1367b1a5c076ac96.zip |
Fix MS-Windows build in lib-src broken by last commit.
lib-src/update-game-score.c (write_scores) [WINDOWSNT]: Use chmod
instead of fchmod.
Diffstat (limited to 'lib-src/update-game-score.c')
-rw-r--r-- | lib-src/update-game-score.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c index d9218ff67b7..ad591cca87a 100644 --- a/lib-src/update-game-score.c +++ b/lib-src/update-game-score.c @@ -443,8 +443,10 @@ write_scores (const char *filename, const struct score_entry *scores, fd = mkostemp (tempfile, 0); if (fd < 0) return -1; +#ifndef WINDOWSNT if (fchmod (fd, 0644) != 0) return -1; +#endif f = fdopen (fd, "w"); if (! f) return -1; @@ -457,6 +459,10 @@ write_scores (const char *filename, const struct score_entry *scores, return -1; if (rename (tempfile, filename) != 0) return -1; +#ifdef WINDOWSNT + if (chmod (filename, 0644) < 0) + return -1; +#endif return 0; } |