- update to new upstream version
This commit is contained in:
parent
17f845038d
commit
403b7c0bdb
@ -1,3 +1,3 @@
|
||||
iputils-s20070202.tar.bz2
|
||||
iputils-s20071127.tar.bz2
|
||||
rdisc.initd
|
||||
ifenslave.tar.gz
|
||||
|
@ -4,8 +4,8 @@
|
||||
timeout = atoi(optarg);
|
||||
break;
|
||||
case 'I':
|
||||
- device = optarg;
|
||||
+ device = strdup(optarg);
|
||||
break;
|
||||
case 'f':
|
||||
quit_on_reply=1;
|
||||
- device = optarg;
|
||||
+ device = strdup(optarg);
|
||||
break;
|
||||
case 'f':
|
||||
quit_on_reply=1;
|
||||
|
@ -1,6 +1,7 @@
|
||||
--- iputils-s20070202/rdisc.c.open-max 2007-08-07 11:34:03.000000000 +0200
|
||||
+++ iputils-s20070202/rdisc.c 2007-08-07 11:41:30.000000000 +0200
|
||||
@@ -240,14 +240,25 @@
|
||||
diff -up iputils-s20071127/rdisc.c.open_max iputils-s20071127/rdisc.c
|
||||
--- iputils-s20071127/rdisc.c.open_max 2008-02-25 11:15:37.000000000 +0100
|
||||
+++ iputils-s20071127/rdisc.c 2008-02-25 11:17:30.000000000 +0100
|
||||
@@ -240,14 +240,25 @@ void do_fork(void)
|
||||
{
|
||||
int t;
|
||||
pid_t pid;
|
||||
@ -8,7 +9,6 @@
|
||||
|
||||
if (trace)
|
||||
return;
|
||||
|
||||
+ if ((open_max = sysconf(_SC_OPEN_MAX)) == -1) {
|
||||
+ if (errno == 0) {
|
||||
+ (void) fprintf(stderr, "OPEN_MAX is not supported\n");
|
||||
@ -17,8 +17,9 @@
|
||||
+ (void) fprintf(stderr, "sysconf() error\n");
|
||||
+ }
|
||||
+ exit(1);
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
|
||||
if ((pid=fork()) != 0)
|
||||
exit(0);
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
Summary: Network monitoring tools including ping
|
||||
Name: iputils
|
||||
Version: 20070202
|
||||
Release: 9%{?dist}
|
||||
Version: 20071127
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
URL: http://www.skbuff.net/iputils
|
||||
Group: System Environment/Daemons
|
||||
@ -154,6 +154,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
||||
%{_sysconfdir}/rc.d/init.d/rdisc
|
||||
|
||||
%changelog
|
||||
* Mon Feb 25 2008 Martin Nagy <mnagy@redhat.com> - 20071127-1
|
||||
- update to new upstream version
|
||||
|
||||
* Mon Feb 18 2008 Martin Nagy <mnagy@redhat.com> - 20070202-9
|
||||
- rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user