Source-Changes-HG archive

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

[src/netbsd-2]: src/gnu/dist/cvs/src Pull up following revision(s) (requested...



details:   https://anonhg.NetBSD.org/src/rev/48cd91045b41
branches:  netbsd-2
changeset: 564007:48cd91045b41
user:      riz <riz%NetBSD.org@localhost>
date:      Thu Aug 25 15:15:45 2005 +0000

description:
Pull up following revision(s) (requested by tron in ticket #5613):
        gnu/dist/cvs/src/cvsbug.in: revision 1.3
Fix vulnerability reported in SA16553 using the Red Hat patch.

diffstat:

 gnu/dist/cvs/src/cvsbug.in |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 03b49bfdf746 -r 48cd91045b41 gnu/dist/cvs/src/cvsbug.in
--- a/gnu/dist/cvs/src/cvsbug.in        Wed Aug 24 18:58:04 2005 +0000
+++ b/gnu/dist/cvs/src/cvsbug.in        Thu Aug 25 15:15:45 2005 +0000
@@ -109,14 +109,14 @@
     /usr/bin/ypcat passwd 2>/dev/null | cat - /etc/passwd | grep "^$LOGNAME:" |
       cut -f5 -d':' | sed -e 's/,.*//' > $TEMP
     ORIGINATOR="`cat $TEMP`"
-    rm -f $TEMP
+    >$TEMP
   fi
 fi
 
 if [ "$ORIGINATOR" = "" ]; then
   grep "^$LOGNAME:" /etc/passwd | cut -f5 -d':' | sed -e 's/,.*//' > $TEMP
   ORIGINATOR="`cat $TEMP`"
-  rm -f $TEMP
+  >$TEMP
 fi
 
 if [ -n "$ORGANIZATION" ]; then



Home | Main Index | Thread Index | Old Index