Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/bin/ksh Pull up following revision(s) (requested by maya ...



details:   https://anonhg.NetBSD.org/src/rev/ecad2a464015
branches:  netbsd-6
changeset: 777297:ecad2a464015
user:      snj <snj%NetBSD.org@localhost>
date:      Tue Mar 13 17:01:57 2018 +0000

description:
Pull up following revision(s) (requested by maya in ticket #1520):
        bin/ksh/history.c: 1.18
Use 0600 as the mode for histfile here too.
pointed out by John D. Baker in PR bin/52480

diffstat:

 bin/ksh/history.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 52b23bd0c5b3 -r ecad2a464015 bin/ksh/history.c
--- a/bin/ksh/history.c Tue Mar 13 16:48:05 2018 +0000
+++ b/bin/ksh/history.c Tue Mar 13 17:01:57 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: history.c,v 1.11 2011/08/31 16:24:54 plunky Exp $      */
+/*     $NetBSD: history.c,v 1.11.4.1 2018/03/13 17:01:57 snj Exp $     */
 
 /*
  * command history
@@ -19,7 +19,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: history.c,v 1.11 2011/08/31 16:24:54 plunky Exp $");
+__RCSID("$NetBSD: history.c,v 1.11.4.1 2018/03/13 17:01:57 snj Exp $");
 #endif
 
 
@@ -757,7 +757,7 @@
   else
     hp = histlist;
 
-  fd = open(hname, O_WRONLY | O_CREAT | O_TRUNC | O_EXLOCK, 0777);
+  fd = open(hname, O_WRONLY | O_CREAT | O_TRUNC | O_EXLOCK, 0600);
   /* Remove anything written before we got the lock */
   ftruncate(fd, 0);
   if (fd >= 0 && (fh = fdopen(fd, "w"))) {



Home | Main Index | Thread Index | Old Index