rsh package update

Signed-off-by: basebuilder_pel7x64builder0 <basebuilder@powerel.org>
master
basebuilder_pel7x64builder0 2020-12-14 17:08:13 +01:00
parent 27905a8383
commit 79342afd8b
2 changed files with 6 additions and 3 deletions

View File

@ -57,9 +57,9 @@ diff -up netkit-rsh-0.17/rexecd/rexecd.c.ipv6-rexec netkit-rsh-0.17/rexecd/rexec
+ char remote_addr[INET6_ADDRSTRLEN] = {};
+
+ if (from.ss_family == AF_INET)
+ remote = inet_ntop(AF_INET, &from, remote_addr, INET_ADDRSTRLEN);
+ remote = inet_ntop(AF_INET, &((struct sockaddr_in *) &from)->sin_addr, remote_addr, INET_ADDRSTRLEN);
+ else
+ remote = inet_ntop(AF_INET6, &from, remote_addr, INET6_ADDRSTRLEN);
+ remote = inet_ntop(AF_INET6, &((struct sockaddr_in6 *) &from)->sin6_addr, remote_addr, INET6_ADDRSTRLEN);
+
+ if (remote) {
+ remote = strdup(remote);

View File

@ -3,7 +3,7 @@
Summary: Clients for remote access commands (rsh, rlogin, rcp)
Name: rsh
Version: 0.17
Release: 79%{?dist}
Release: 80%{?dist}
License: BSD
Group: Applications/Internet

@ -258,6 +258,9 @@ install -m644 %SOURCE10 %{buildroot}%{_unitdir}/rexec.socket
%{_mandir}/man8/*.8*

%changelog
* Thu Jan 30 2020 Michal Ruprich <mruprich@redhat.com> - 0.17-80
- Resolves: #1790532 - rexecd prints incorrect IP addresses with -D

* Sat Apr 28 2018 Michal Ruprich <mruprich@redhat.com> - 0.17-79
- Related: #1477207 - service and socket file directives should be under [Unit]