Blame SPECS/telnet.spec

3521ef
%global _hardened_build 1
3521ef
3521ef
Summary: The client program for the Telnet remote login protocol
3521ef
Name: telnet
3521ef
Version: 0.17
da4f7b
Release: 74%{?dist}.1
3521ef
Epoch: 1
3521ef
License: BSD
3521ef
Group: Applications/Internet
3521ef
Source0: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-%{version}.tar.gz
3521ef
Url: http://web.archive.org/web/20070819111735/www.hcs.harvard.edu/~dholland/computers/old-netkit.html
3521ef
# telnet-client tarball is snapshot of the OpenBSD client telnet
3521ef
Source2: telnet-client.tar.gz
3521ef
Source4: telnet.wmconfig
3521ef
Source5: telnet@.service
3521ef
Source6: telnet.socket
3521ef
Patch1: telnet-client-cvs.patch
3521ef
Patch5: telnetd-0.17.diff
3521ef
Patch6: telnet-0.17-env.patch
3521ef
Patch7: telnet-0.17-issue.patch
3521ef
Patch8: telnet-0.17-sa-01-49.patch
3521ef
Patch10: telnet-0.17-pek.patch
3521ef
Patch11: telnet-0.17-8bit.patch
3521ef
Patch12: telnet-0.17-argv.patch
3521ef
Patch13: telnet-0.17-conf.patch
3521ef
Patch14: telnet-0.17-cleanup_race.patch
3521ef
Patch15: telnetd-0.17-pty_read.patch
3521ef
Patch16: telnet-0.17-CAN-2005-468_469.patch
3521ef
Patch18: telnet-gethostbyname.patch
3521ef
Patch19: netkit-telnet-0.17-ipv6.diff
3521ef
Patch20: netkit-telnet-0.17-nodns.patch
3521ef
Patch21: telnet-0.17-errno_test_sys_bsd.patch
3521ef
Patch22: netkit-telnet-0.17-reallynodns.patch
3521ef
Patch23: telnet-rh678324.patch
3521ef
Patch24: telnet-rh674942.patch
3521ef
Patch25: telnet-rh704604.patch
3521ef
Patch26: telnet-rh825946.patch
3521ef
Patch27: telnet-0.17-force-ipv6-ipv4.patch
3521ef
Patch28: netkit-telnet-0.17-core-dump.patch
3521ef
Patch29: netkit-telnet-0.17-gcc7.patch
3521ef
Patch30: netkit-telnet-0.17-manpage.patch
3521ef
Patch31: netkit-telnet-0.17-covscan.patch
3521ef
Patch32: telnet-log-address.patch
776859
Patch33: telnet-0.17-overflow-exploit.patch
da4f7b
Patch34: telnet-0.17-pty-retry.patch
3521ef
3521ef
BuildRequires: ncurses-devel systemd
3521ef
BuildRequires: perl-interpreter
3521ef
3521ef
%description
3521ef
Telnet is a popular protocol for logging into remote systems over the
3521ef
Internet. The package provides a command line Telnet client
3521ef
3521ef
%package server
3521ef
Requires: systemd
3521ef
Requires(post): systemd
3521ef
Requires(preun): systemd
3521ef
Requires(postun): systemd
3521ef
Group: System Environment/Daemons
3521ef
Summary: The server program for the Telnet remote login protocol
3521ef
3521ef
%description server
3521ef
Telnet is a popular protocol for logging into remote systems over the
3521ef
Internet. The package includes a daemon that supports Telnet remote
3521ef
logins into the host machine. The daemon is disabled by default.
3521ef
You may enable the daemon by editing /etc/xinetd.d/telnet
3521ef
3521ef
%prep
3521ef
%setup -q -n netkit-telnet-%{version}
3521ef
3521ef
mv telnet telnet-NETKIT
3521ef
%setup -T -D -q -a 2 -n netkit-telnet-%{version}
3521ef
3521ef
%patch1 -p0 -b .cvs
3521ef
%patch5 -p0 -b .fix
3521ef
%patch6 -p1 -b .env
3521ef
%patch10 -p0 -b .pek
3521ef
%patch7 -p1 -b .issue
3521ef
%patch8 -p1 -b .sa-01-49
3521ef
%patch11 -p1 -b .8bit
3521ef
%patch12 -p1 -b .argv
3521ef
%patch13 -p1 -b .confverb
3521ef
%patch14 -p1 -b .cleanup_race 
3521ef
%patch15 -p0 -b .pty_read
3521ef
%patch16 -p1 -b .CAN-2005-468_469
3521ef
#%patch17 -p1 -b .linemode
3521ef
%patch18 -p1 -b .gethost
3521ef
%patch19 -p1 -b .gethost2
3521ef
%patch20 -p1 -b .nodns
3521ef
%patch21 -p1 -b .errnosysbsd
3521ef
%patch22 -p1 -b .reallynodns
3521ef
%patch23 -p1 -b .rh678324
3521ef
%patch24 -p1 -b .rh674942
3521ef
%patch25 -p1 -b .rh704604
3521ef
%patch26 -p1 -b .rh825946
3521ef
%patch27 -p1 -b .ipv6-support
3521ef
%patch28 -p1 -b .core-dump
3521ef
%patch29 -p1 -b .gcc7
3521ef
%patch30 -p1 -b .manpage
3521ef
%patch31 -p1 -b .covscan
3521ef
%patch32 -p1 -b .log-address
776859
%patch33 -p1 -b .overflow
da4f7b
%patch34 -p1 -b .pty-retry
3521ef
3521ef
%build
3521ef
%ifarch s390 s390x
3521ef
    export CC_FLAGS="$RPM_OPT_FLAGS -fPIE"
3521ef
%else
3521ef
    export CC_FLAGS="$RPM_OPT_FLAGS -fpie"
3521ef
%endif
3521ef
3521ef
export LD_FLAGS="$LD_FLAGS -z now -pie"
3521ef
3521ef
sh configure --with-c-compiler=gcc 
3521ef
perl -pi -e '
3521ef
    s,-O2,\$(CC_FLAGS),;
3521ef
    s,LDFLAGS=.*,LDFLAGS=\$(LD_FLAGS),;
3521ef
    s,^BINDIR=.*$,BINDIR=%{_bindir},;
3521ef
    s,^MANDIR=.*$,MANDIR=%{_mandir},;
3521ef
    s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
3521ef
    ' MCONFIG
3521ef
3521ef
# remove stripping
3521ef
perl -pi -e 's|install[ ]+-s|install|g' \
3521ef
    ./telnet/GNUmakefile \
3521ef
    ./telnetd/Makefile \
3521ef
    ./telnetlogin/Makefile \
3521ef
    ./telnet-NETKIT/Makefile
3521ef
3521ef
make %{?_smp_mflags}
3521ef
3521ef
%install
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_unitdir}
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man5
3521ef
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
3521ef
3521ef
make INSTALLROOT=${RPM_BUILD_ROOT} install
3521ef
3521ef
install -p -m644 %SOURCE5 ${RPM_BUILD_ROOT}%{_unitdir}/telnet@.service
3521ef
install -p -m644 %SOURCE6 ${RPM_BUILD_ROOT}%{_unitdir}/telnet.socket
3521ef
3521ef
%post server
3521ef
%systemd_post telnet.socket
3521ef
3521ef
%preun server
3521ef
%systemd_preun telnet.socket
3521ef
3521ef
%postun server
3521ef
%systemd_postun_with_restart telnet.socket
3521ef
3521ef
%files
3521ef
%doc README
3521ef
%defattr(-,root,root,-)
3521ef
%{_bindir}/telnet
3521ef
%{_mandir}/man1/telnet.1*
3521ef
3521ef
%files server
3521ef
%defattr(-,root,root,-)
3521ef
%{_unitdir}/*
3521ef
%{_sbindir}/in.telnetd
3521ef
%{_mandir}/man5/issue.net.5*
3521ef
%{_mandir}/man8/in.telnetd.8*
3521ef
%{_mandir}/man8/telnetd.8*
3521ef
3521ef
%changelog
da4f7b
* Tue Dec 15 2020 Michal Ruprich <mruprich@redhat.com> - 1:0.17-74.1
da4f7b
- Resolves: #1907283 - in.telnetd needs to tolerate temporary EIO errors
da4f7b
da4f7b
* Thu Mar 26 2020 Michal Ruprich <michalruprich@gmail.com> - 1:0.17-74
da4f7b
- Resolves: #1814474 - Arbitrary remote code execution in utility.c via short writes or urgent data
776859
3521ef
* Thu Oct 04 2018 Michal Ruprich <mruprich@redhat.com> - 1:0.17-73
3521ef
- Resolves: #1602711 - Please review important issues found by covscan
3521ef
- Resolves: #1637085 - Option -i is missing in telnet in el8 but is available in el7
3521ef
3521ef
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.17-72
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3521ef
3521ef
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.17-71
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3521ef
3521ef
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.17-70
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3521ef
3521ef
* Tue Apr 25 2017 Michal Ruprich <mruprich@redhat.com> - 1:0.17-69
3521ef
- Resolves: #1445259 - telnet won't build with latest gcc
3521ef
- added note about address resolution in manpage
3521ef
3521ef
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.17-68
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3521ef
3521ef
* Mon Jan 23 2017 Michal Ruprich <mruprich@redhat.com> - 1:0.17-67
3521ef
- Resolves: #1415706 - telnet dumps core with certain combination of parameters
3521ef
3521ef
* Sat Oct 01 2016 Richard W.M. Jones <rjones@redhat.com> - 1:0.17-66
3521ef
- BR perl
3521ef
  (https://fedoraproject.org/wiki/Changes/Build_Root_Without_Perl)
3521ef
3521ef
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.17-65
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3521ef
3521ef
* Mon Jan 25 2016 Luboš Uhliarik <luhliari@redhat.com> - 1:0.17-64
3521ef
- Related: #1069809 - fixed wrong paths in patch
3521ef
3521ef
* Thu Oct 29 2015 Luboš Uhliarik <luhliari@redhat.com> - 1:0.17-63
3521ef
- Related: #1069809 - changed patch name + some minor changes in patch
3521ef
3521ef
* Wed Sep 30 2015 Luboš Uhliarik <luhliari@redhat.com> - 1:0.17-62
3521ef
- Resolves: #1069809 - No option to specify IPv6 or IPv4 explicitly must be used
3521ef
3521ef
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-61
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3521ef
3521ef
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-60
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3521ef
3521ef
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-59
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3521ef
3521ef
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-58
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3521ef
3521ef
* Wed Jul 17 2013 Michal Sekletar <msekleta@redhat.com> - 1:0.17-57
3521ef
- enable hardened build
3521ef
- fix dates in changelog
3521ef
- add systemd to BuildRequires
3521ef
3521ef
* Mon May 06 2013 Michal Sekletar <msekleta@redhat.com> - 1:0.17-56
3521ef
- telnet-server will use systemd socket based activation instead of xinetd
3521ef
3521ef
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-55
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3521ef
3521ef
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-54
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3521ef
3521ef
* Thu Jun 14 2012 Adam Tkac <atkac redhat com> 1:0.17-53
3521ef
- update /var/run/utmp even on some corner cases
3521ef
3521ef
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-52
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3521ef
3521ef
* Wed Jul 13 2011 Adam Tkac <atkac redhat com> 1:0.17-51
3521ef
- add "-debug6" option to telnetd (#rh674942)
3521ef
- telnet wasn't interruptable (^C) when started with specious -b argument (#704604)
3521ef
3521ef
* Tue Jun 28 2011 Adam Tkac <atkac redhat com> 1:0.17-50
3521ef
- telnetd: store "from" address in sockaddr_storage (#678324)
3521ef
3521ef
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-49
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3521ef
3521ef
* Thu Jan 20 2011 Karsten Hopp <karsten@redhat.com> 1:0.17-48
3521ef
- update telnet-0.17-sa-01-49.patch to make it apply with fuzz=0
3521ef
3521ef
* Tue Mar 09 2010 Adam Tkac <atkac redhat com> 1:0.17-47
3521ef
- add URL and README
3521ef
3521ef
* Fri Nov 27 2009 Adam Tkac <atkac redhat com> 1:0.17-46
3521ef
- changes related package review (#226484)
3521ef
- remove unused patches
3521ef
  - telnet-0.17-linemode.patch
3521ef
  - telnet-0.17-env-5x.patch
3521ef
3521ef
* Wed Sep 02 2009 Adam Tkac <atkac redhat com> 1:0.17-45
3521ef
- add new option -N to disable DNS lookups (#490242)
3521ef
3521ef
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-44
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3521ef
3521ef
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.17-43
3521ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3521ef
3521ef
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:0.17-42
3521ef
- Autorebuild for GCC 4.3
3521ef
3521ef
* Tue Sep 25 2007 Adam Tkac <atkac redhat com> 1:0.17-41
3521ef
- rebased "nodns" patch with patch from Bryn M. Reeves
3521ef
3521ef
* Thu Sep 20 2007 Adam Tkac <atkac redhat com> 1:0.17-40
3521ef
- improved patch to #274991
3521ef
3521ef
* Wed Aug 22 2007 Harald Hoyer <harald@redhat.com> - 1:0.17-39
3521ef
- added patch to prevent a rare loop in the client
3521ef
3521ef
* Fri Apr 13 2007 Adam Tkac <atkac redhat com> - 1:0.17-38.fc7
3521ef
- added -c option which disables reverse dns checking (#223448)
3521ef
- added smp_mflags to make
3521ef
- start using dist macro
3521ef
3521ef
* Fri Jul 14 2006 Harald Hoyer <harald@redhat.com> - 1:0.17-37
3521ef
- added netkit-telnet-0.17-ipv6.diff from Marek Grác, 
3521ef
  which adds IPv6 support to telnetd
3521ef
3521ef
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-36.1
3521ef
- rebuild
3521ef
3521ef
* Mon May 08 2006 Harald Hoyer <harald@redhat.com> - 1:0.17-36
3521ef
- patch to remove gethostbyname() (bug #190296)
3521ef
3521ef
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-35.2.1
3521ef
- bump again for double-long bug on ppc(64)
3521ef
3521ef
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:0.17-35.2
3521ef
- rebuilt for new gcc4.1 snapshot and glibc changes
3521ef
3521ef
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3521ef
- rebuilt
3521ef
3521ef
* Thu Mar 17 2005 Harald Hoyer <harald@redhat.com> - 1:0.17-35
3521ef
- fixed CAN-2005-468 and CAN-2005-469
3521ef
3521ef
* Wed Mar 02 2005 Harald Hoyer <harald@redhat.com> 
3521ef
- rebuilt
3521ef
3521ef
* Fri Jan 21 2005 Harald Hoyer <harald@redhat.com> - 1:0.17-33
3521ef
- added patch telnetd-0.17-pty_read.patch, which fixes 145636
3521ef
3521ef
* Thu Jan 13 2005 Jason Vas Dias <jvdias@redhat.com> - 1:0.17-31
3521ef
- bug 143929 / 145004 : fix race condition in telnetd on wtmp lock 
3521ef
- when cleanup() is entered from main process and in signal
3521ef
- handler 
3521ef
3521ef
* Mon Jun 28 2004 Harald Hoyer <harald@redhat.com> - 1:0.17-30
3521ef
- fixed 126858: Too long /proc/X/cmdline: bad ps output when 
3521ef
                piped to less/more
3521ef
3521ef
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3521ef
- rebuilt
3521ef
3521ef
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3521ef
- rebuilt
3521ef
3521ef
* Thu Feb  5 2004 Harald Hoyer <harald@redhat.com> - 1:0.17-27
3521ef
- added PIE compile flags
3521ef
3521ef
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
3521ef
- rebuilt
3521ef
3521ef
* Wed May 28 2003 Harald Hoyer <harald@redhat.de> 1:0.17-26
3521ef
- cleanup of spec file
3521ef
- 8bit binary patch #91023
3521ef
3521ef
* Wed Jan 29 2003 Harald Hoyer <harald@redhat.de> 0.17-25
3521ef
- rebuilt 
3521ef
3521ef
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
3521ef
- rebuilt
3521ef
3521ef
* Mon Nov 11 2002 Harald Hoyer <harald@redhat.de> 0.17-24
3521ef
- changed description
3521ef
- removed unused .desktop files
3521ef
3521ef
* Tue Jul 23 2002 Harald Hoyer <harald@redhat.de> 0.17-23
3521ef
- removed prestripping
3521ef
3521ef
* Tue Jul  9 2002 Harald Hoyer <harald@redhat.de>
3521ef
- removed x86 -O gcc-2.96 hack (#59514)
3521ef
3521ef
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
3521ef
- automated rebuild
3521ef
3521ef
* Thu Jun  6 2002 Tim Powers <timp@redhat.com>
3521ef
- bump release number and rebuild
3521ef
3521ef
* Thu May 23 2002 Tim Powers <timp@redhat.com>
3521ef
- automated rebuild
3521ef
3521ef
* Thu Sep 06 2001 Harald Hoyer <harald@redhat.de> 0.17-20
3521ef
- hopefully fixed #52817, #52224
3521ef
3521ef
* Thu Aug 16 2001 Bill Nottingham <notting@redhat.com>
3521ef
- bump version for 7.2
3521ef
3521ef
* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
3521ef
- fix versioning
3521ef
3521ef
* Tue Jul 31 2001 Harald Hoyer <harald@redhat.de>
3521ef
- fixed security issues (#50335)
3521ef
- patched the patches to fit the 5x version
3521ef
- one world -> one spec file for all versions ;)
3521ef
3521ef
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
3521ef
- no applnk file, it's clutrtering the menus
3521ef
3521ef
* Wed Jul 18 2001 Bill Nottingham <notting@redhat.com>
3521ef
- apply the patch, duh (and fix it while we're here)
3521ef
3521ef
* Tue Jul 10 2001 Bill Nottingham <notting@redhat.com>
3521ef
- make /etc/issue.net parsing match the various gettys
3521ef
3521ef
* Mon Jun 18 2001 Harald Hoyer <harald@redhat.de>
3521ef
- merged Jakubs and Pekka's patches 
3521ef
3521ef
* Wed Apr  4 2001 Jakub Jelinek <jakub@redhat.com>
3521ef
- don't let configure to guess compiler, it can pick up egcs
3521ef
3521ef
* Fri Mar  9 2001 Pekka Savola <pekkas@netcore.fi>
3521ef
- update to 0.17
3521ef
- apply latest changes from CVS to telnet client, enable IPv6
3521ef
- BuildPreReq ncurses-devel
3521ef
3521ef
* Mon Jan 22 2001 Helge Deller <hdeller@redhat.com>
3521ef
- added swedish & german translation to .desktop-file (#15332)
3521ef
3521ef
* Sat Dec 30 2000 Nalin Dahyabhai <nalin@redhat.com>
3521ef
- mark the xinetd config file as config(noreplace)
3521ef
3521ef
* Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
3521ef
- make sure the server is turned off by default
3521ef
3521ef
* Tue Jul 18 2000 Bill Nottingham <notting@redhat.com>
3521ef
- add description & default to xinetd file
3521ef
3521ef
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
3521ef
- automatic rebuild
3521ef
3521ef
* Mon Jun 19 2000 Jeff Johnson <jbj@redhat.com>
3521ef
- FHS packaging.
3521ef
- update to 0.17-pre20000412.
3521ef
3521ef
* Tue May 23 2000 Trond Eivind Glomsrød <teg@redhat.com>
3521ef
- moved the xinet entry to the server
3521ef
3521ef
* Mon May 22 2000 Trond Eivind Glomsrød <teg@redhat.com>
3521ef
- add an entry to /etc/xinetd.d
3521ef
3521ef
* Tue May 16 2000 Jeff Johnson <jbj@redhat.com>
3521ef
- permit telnet queries only for exported variables.
3521ef
3521ef
* Fri Mar 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
3521ef
- 0.17
3521ef
3521ef
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
3521ef
- rebuild for sparc baud rates > 38400.
3521ef
3521ef
* Fri Feb 11 2000 Bill Nottingham <notting@redhat.com>
3521ef
- fix description
3521ef
3521ef
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
3521ef
- wmconfig gone
3521ef
3521ef
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
3521ef
- man pages are compressed
3521ef
- fix description
3521ef
3521ef
* Tue Jan  4 2000 Bill Nottingham <notting@redhat.com>
3521ef
- split client and server
3521ef
3521ef
* Tue Dec 21 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- update to 0.16.
3521ef
3521ef
* Sun Oct 10 1999 Matt Wilson <msw@redhat.com>
3521ef
- corrected the Terminal setting of the .desktop (needs to be 'true' not '1')
3521ef
3521ef
* Sat Sep 25 1999 Preston Brown <pbrown@redhat.com>
3521ef
- red hat .desktop entry
3521ef
3521ef
* Sat Aug 21 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- rebuild for 6.1.
3521ef
3521ef
* Wed Aug 18 1999 Bill Nottingham <notting@redhat.com>
3521ef
- don't trust random TERM variables in telnetd (#4560)
3521ef
3521ef
* Wed Jun  2 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- fix (#3098).
3521ef
3521ef
* Thu May 27 1999 Antti Andreimann <Antti.Andreimann@mail.ee>
3521ef
- fixed the problem with escape character (it could not be disabled)
3521ef
- changed the spec file to use %%setup macro for unpacking telnet-client
3521ef
3521ef
* Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- use glibc utmp routines.
3521ef
3521ef
* Thu Apr  8 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- fix the fix (wrong way memcpy).
3521ef
3521ef
* Wed Apr  7 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- fix "telnet localhost" bus error on sparc64 (alpha?).
3521ef
3521ef
* Tue Apr  6 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- use OpenBSD telnet client (and fix minor core dump with .telnetrc #247)
3521ef
3521ef
* Thu Mar 25 1999 Erik Troan <ewt@redhat.com>
3521ef
- use openpty in telnetd
3521ef
3521ef
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
3521ef
- auto rebuild in the new build environment (release 22)
3521ef
3521ef
* Mon Mar 15 1999 Jeff Johnson <jbj@redhat.com>
3521ef
- compile for 6.0.
3521ef
3521ef
* Fri Apr 24 1998 Prospector System <bugs@redhat.com>
3521ef
- translations modified for de, fr, tr
3521ef
3521ef
* Fri Apr 24 1998 Cristian Gafton <gafton@redhat.com>
3521ef
- compile C++ code using egcs
3521ef
3521ef
* Tue Apr 14 1998 Erik Troan <ewt@redhat.com>
3521ef
- built against new ncurses
3521ef
3521ef
* Wed Oct 29 1997 Donnie Barnes <djb@redhat.com>
3521ef
- added wmconfig entry
3521ef
3521ef
* Tue Jul 15 1997 Erik Troan <ewt@redhat.com>
3521ef
- initial build