texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Wed Oct 5 19:22:01 EDT 2005)


From: Karl Berry
Subject: texinfo update (Wed Oct 5 19:22:01 EDT 2005)
Date: Wed, 05 Oct 2005 19:22:14 -0400

Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.539
retrieving revision 1.540
diff -c -r1.539 -r1.540
*** ChangeLog   3 Oct 2005 00:41:26 -0000       1.539
--- ChangeLog   5 Oct 2005 23:21:41 -0000       1.540
***************
*** 1,3 ****
--- 1,7 ----
+ 2005-10-05  Karl Berry  <address@hidden>
+ 
+       * util/texindex.c (maketempname): use mode 0600.
+ 
  2005-10-02  Karl Berry  <address@hidden>
  
        * util/texindex.c (maketempname): avoid race condition.
Index: util/texindex.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/util/texindex.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -c -r1.14 -r1.15
*** util/texindex.c     3 Oct 2005 00:41:26 -0000       1.14
--- util/texindex.c     5 Oct 2005 23:21:41 -0000       1.15
***************
*** 1,5 ****
  /* texindex -- sort TeX index dribble output into an actual index.
!    $Id: texindex.c,v 1.14 2005/10/03 00:41:26 karl Exp $
  
     Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
     2002, 2003, 2004, 2005 Free Software Foundation, Inc.
--- 1,5 ----
  /* texindex -- sort TeX index dribble output into an actual index.
!    $Id: texindex.c,v 1.15 2005/10/05 23:21:41 karl Exp $
  
     Copyright (C) 1987, 1991, 1992, 1996, 1997, 1998, 1999, 2000, 2001,
     2002, 2003, 2004, 2005 Free Software Foundation, Inc.
***************
*** 406,412 ****
  
    sprintf (tempsuffix, ".%d", count);
    name =  concat3 (tempdir, tempbase, tempsuffix);
!   fd = open (name, O_CREAT|O_EXCL|O_WRONLY, 0666);
    if (fd == -1)
      return NULL;
    else
--- 406,412 ----
  
    sprintf (tempsuffix, ".%d", count);
    name =  concat3 (tempdir, tempbase, tempsuffix);
!   fd = open (name, O_CREAT|O_EXCL|O_WRONLY, 0600);
    if (fd == -1)
      return NULL;
    else
P ChangeLog
P util/texindex.c


reply via email to

[Prev in Thread] Current Thread [Next in Thread]