Ethan Galstad 19 лет назад
Родитель
Сommit
8a3d17b89e
9 измененных файлов с 19 добавлено и 19 удалено
  1. 1 1
      Changelog
  2. 2 2
      configure
  3. 2 2
      configure.in
  4. 3 3
      include/common.h
  5. 6 6
      include/dh.h
  6. 1 1
      nrpe.spec
  7. 1 1
      src/check_nrpe.c
  8. 1 1
      src/nrpe.c
  9. 2 2
      update-version

+ 1 - 1
Changelog

@@ -3,7 +3,7 @@ NRPE Changelog
 **************
 
 
-2.7.1 - 03/??/2007
+2.7.1 - 03/08/2007
 ------------------
 - Changed C++ style comment to C style to fix compilation errors on AIX (Ryan McGarry)
 

+ 2 - 2
configure

@@ -1294,9 +1294,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
 PKG_NAME=nrpe
-PKG_VERSION="2.7"
+PKG_VERSION="2.7.1"
 PKG_HOME_URL="http://www.nagios.org/"
-PKG_REL_DATE="02-19-2007"
+PKG_REL_DATE="03-08-2007"
 
 ac_aux_dir=
 for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do

+ 2 - 2
configure.in

@@ -9,9 +9,9 @@ AC_CONFIG_HEADER(include/config.h)
 AC_PREFIX_DEFAULT(/usr/local/nagios)
 
 PKG_NAME=nrpe
-PKG_VERSION="2.7"
+PKG_VERSION="2.7.1"
 PKG_HOME_URL="http://www.nagios.org/"
-PKG_REL_DATE="02-19-2007"
+PKG_REL_DATE="03-08-2007"
 
 dnl Figure out how to invoke "install" and what install options to use.
 AC_PROG_INSTALL

+ 3 - 3
include/common.h

@@ -2,7 +2,7 @@
  *
  * COMMON.H - NRPE Common Include File
  * Copyright (c) 1999-2006 Ethan Galstad (nagios@nagios.org)
- * Last Modified: 02-19-2007
+ * Last Modified: 03-08-2007
  *
  * License:
  *
@@ -23,8 +23,8 @@
 
 #include "config.h"
 
-#define PROGRAM_VERSION "2.7"
-#define MODIFICATION_DATE "02-19-2007"
+#define PROGRAM_VERSION "2.7.1"
+#define MODIFICATION_DATE "03-08-2007"
 
 #define OK		0
 #define ERROR		-1

+ 6 - 6
include/dh.h

@@ -4,12 +4,12 @@
 DH *get_dh512()
 	{
 	static unsigned char dh512_p[]={
-		0xD5,0x3F,0x5B,0x7D,0x68,0xC5,0xC1,0x1A,0x5E,0x52,0x50,0x32,
-		0xCA,0x47,0xA4,0x1F,0x54,0x64,0xCF,0x6F,0x10,0xC6,0x1E,0x40,
-		0xA2,0xD0,0x24,0x84,0xD2,0x61,0xE9,0x5E,0x5B,0xAA,0x0B,0xF0,
-		0xFB,0x51,0x2B,0xCC,0x97,0x17,0xB2,0x78,0xF8,0x6C,0xA3,0xB4,
-		0xDA,0xAD,0x47,0xB3,0x1F,0x69,0xEC,0x3A,0xD0,0xA3,0xC9,0x6E,
-		0x69,0x8B,0x48,0x03,
+		0xAF,0x2D,0x6D,0x09,0x3D,0xFE,0x41,0x34,0x51,0xFF,0xCB,0x76,
+		0xF7,0x45,0x00,0x85,0x76,0xED,0xF8,0xD9,0x2C,0xD8,0x08,0x4C,
+		0x0E,0xA9,0xA4,0x90,0x12,0x80,0x85,0x0D,0x18,0xF7,0xAF,0xB6,
+		0xC6,0xDE,0xC4,0x65,0x51,0x9A,0x9F,0x17,0xA2,0x11,0x0D,0x0E,
+		0x57,0xE0,0xC3,0x2C,0x15,0x87,0x7D,0x9B,0x1F,0x07,0x14,0x9D,
+		0xE2,0x54,0x03,0x53,
 		};
 	static unsigned char dh512_g[]={
 		0x02,

+ 1 - 1
nrpe.spec

@@ -1,5 +1,5 @@
 %define name nrpe
-%define version 2.7
+%define version 2.7.1
 %define release 1
 %define nsusr nagios
 %define nsgrp nagios

+ 1 - 1
src/check_nrpe.c

@@ -4,7 +4,7 @@
  * Copyright (c) 1999-2007 Ethan Galstad (nagios@nagios.org)
  * License: GPL
  *
- * Last Modified: 03-07-2007
+ * Last Modified: 03-08-2007
  *
  * Command line: CHECK_NRPE -H <host_address> [-p port] [-c command] [-to to_sec]
  *

+ 1 - 1
src/nrpe.c

@@ -4,7 +4,7 @@
  * Copyright (c) 1999-2007 Ethan Galstad (nagios@nagios.org)
  * License: GPL
  *
- * Last Modified: 02-19-2007
+ * Last Modified: 03-08-2007
  *
  * Command line: nrpe -c <config_file> [--inetd | --daemon]
  *

+ 2 - 2
update-version

@@ -10,10 +10,10 @@ else
 fi
 
 # Current version number
-CURRENTVERSION=2.7
+CURRENTVERSION=2.7.1
 
 # Last date
-LASTDATE=02-19-2007
+LASTDATE=03-08-2007
 
 if [ "x$1" = "x" ]
 then