mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
666a4ba664
* Potential security problems caused by maliciously-formed RFC 2231 attachment parameters Several other bugs fixed as well. All users of Pine are highly encouraged to upgrade. Improvements to the port: * DOCSDIR'ification of plist * Patches regenerated to remove fuzz Approved by: security-officer, portmgr
21 lines
682 B
Plaintext
21 lines
682 B
Plaintext
*** pico/osdep/term.cap.orig Thu Nov 14 09:27:17 2002
|
|
--- pico/osdep/term.cap Fri Sep 5 01:44:21 2003
|
|
***************
|
|
*** 288,294 ****
|
|
_kppu = tgetstr("kP", &p);
|
|
_kppd = tgetstr("kN", &p);
|
|
_kphome = tgetstr("kh", &p);
|
|
! _kpend = tgetstr("kH", &p);
|
|
_kpdel = tgetstr("kD", &p);
|
|
_kf1 = tgetstr("k1", &p);
|
|
_kf2 = tgetstr("k2", &p);
|
|
--- 288,295 ----
|
|
_kppu = tgetstr("kP", &p);
|
|
_kppd = tgetstr("kN", &p);
|
|
_kphome = tgetstr("kh", &p);
|
|
! if((_kpend = tgetstr("@7", &p)) == NULL)
|
|
! _kpend = tgetstr("kH",&p);
|
|
_kpdel = tgetstr("kD", &p);
|
|
_kf1 = tgetstr("k1", &p);
|
|
_kf2 = tgetstr("k2", &p);
|