Source-Changes-HG archive

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

[src/netbsd-1-4]: src/usr.sbin/amd/libamu pull up rev 1.1.1.2 from trunk (req...



details:   https://anonhg.NetBSD.org/src/rev/f6d7fa9a3962
branches:  netbsd-1-4
changeset: 469451:f6d7fa9a3962
user:      cgd <cgd%NetBSD.org@localhost>
date:      Tue Sep 21 04:58:10 1999 +0000

description:
pull up rev 1.1.1.2 from trunk (requested by christos):
  Upgrade amd(8) and related software to fix expoitable stack overflows
  in amq(8), as reported in BUGTRAQ and elsewhere.

diffstat:

 usr.sbin/amd/libamu/mkconf |  31 ++++++++++++++++++-------------
 1 files changed, 18 insertions(+), 13 deletions(-)

diffs (46 lines):

diff -r c278dbb49ff4 -r f6d7fa9a3962 usr.sbin/amd/libamu/mkconf
--- a/usr.sbin/amd/libamu/mkconf        Tue Sep 21 04:58:04 1999 +0000
+++ b/usr.sbin/amd/libamu/mkconf        Tue Sep 21 04:58:10 1999 +0000
@@ -1,24 +1,29 @@
-#      $NetBSD: mkconf,v 1.1.1.1 1997/07/24 21:20:12 christos Exp $
+#      $NetBSD: mkconf,v 1.1.1.1.4.1 1999/09/21 04:58:10 cgd Exp $
 # mkconf
 # Generate local configuration parameters for amd
 #
 cat << __EOF
 
+/* Automatically generated file, do not edit! */
+ 
+/* Define name and version of host machine (eg. solaris2.5.1) */
+#define HOST_OS "`uname -s | tr '[A-Z]' '[a-z]'``uname -r`"
+
+/* Define only name of host machine OS (eg. solaris2) */
+#define HOST_OS_NAME "`uname -s | tr '[A-Z]' '[a-z]'``uname -r | cut -d. -f 1`"
+
+/* Define only version of host machine (eg. 2.5.1) */
+#define HOST_OS_VERSION "`uname -r`"
+
+/* Define the header version of (linux) hosts (eg. 2.2.10) */
+#define HOST_HEADER_VERSION "`uname -r`"
+
+/* Define name of host */
+#define HOST_NAME "`hostname`"
+
 /* Define user name */
 #define USER_NAME "`whoami`"
 
 /* Define configuration date */
 #define CONFIG_DATE "`date`"
-
-/* Define name of host */
-#define HOST_NAME "`hostname`"
-
-/* Define only version of host machine (eg. 2.5.1) */
-#define HOST_OS_VERSION "`uname -r`"
-
-/* Define only name of host machine OS (eg. solaris2) */
-#define HOST_OS_NAME "`uname -s | tr '[A-Z]' '[a-z]'``uname -r | cut -d. -f 1`"
-
-#define HOST_OS "`uname -s | tr '[A-Z]' '[a-z]'``uname -r`"
-
 __EOF



Home | Main Index | Thread Index | Old Index