Codebase list lynx / c396034
Imported Debian patch 2.8.6-10 Atsuhito KOHDA authored 19 years ago Axel Beckert committed 9 years ago
4 changed file(s) with 74 addition(s) and 32 deletion(s). Raw diff Collapse all Expand all
0 lynx-cur (2.8.6-9sarge1) stable-security; urgency=high
1
2 * Non-maintainer upload by the Security Team
3 * Applied patch by Ulf Härnhammar to fix buffer overflow that can lead
4 to arbitrary code execution [WWW/Library/Implementation/HTMIME.c,
5 CAN-2005-3120, debian/patch-3]
6
7 -- Martin Schulze <joey@infodrom.org> Mon, 29 May 2006 06:25:01 +0200
0 lynx-cur (2.8.6-10) unstable; urgency=low
1
2 * Added Czech translation of debconf messages. Thanks to Miroslav Kure
3 <kurem@upcase.inf.upol.cz> (Closes: #308026)
4
5 -- Atsuhito KOHDA <kohda@debian.org> Wed, 11 May 2005 11:04:43 +0900
86
97 lynx-cur (2.8.6-9) unstable; urgency=low
108
+0
-21
debian/patch-3 less more
0 diff -u lynx-cur-2.8.6/WWW/Library/Implementation/HTMIME.c lynx-cur-2.8.6/WWW/Library/Implementation/HTMIME.c
1 --- lynx-cur-2.8.6/WWW/Library/Implementation/HTMIME.c
2 +++ lynx-cur-2.8.6/WWW/Library/Implementation/HTMIME.c
3 @@ -2286,7 +2286,7 @@
4 strcpy(t, s);
5 return 1;
6 }
7 - for (p = buf; *s;) {
8 + for (p = buf; *s && p < buf + LINE_LENGTH - 8; ) {
9 if (!kanji && s[0] == '$' && (s[1] == '@' || s[1] == 'B')) {
10 if (HTmaybekanji((int) s[2], (int) s[3])) {
11 kanji = 1;
12 @@ -2309,7 +2309,7 @@
13 }
14 *p++ = *s++;
15 }
16 - *p = *s; /* terminate string */
17 + *p = '\0'; /* terminate string */
18
19 strcpy(t, buf);
20 return 0;
0 #
1 # Translators, if you are not familiar with the PO format, gettext
2 # documentation is worth reading, especially sections dedicated to
3 # this format, e.g. by running:
4 # info -n '(gettext)PO Files'
5 # info -n '(gettext)Header Entry'
6 #
7 # Some information specific to po-debconf are available at
8 # /usr/share/doc/po-debconf/README-trans
9 # or http://www.debian.org/intl/l10n/po-debconf/README-trans
10 #
11 # Developers do not need to manually edit POT or PO files.
12 #
13 msgid ""
14 msgstr ""
15 "Project-Id-Version: lynx-cur\n"
16 "POT-Creation-Date: 2003-03-18 10:24+0900\n"
17 "PO-Revision-Date: 2005-05-06 22:43+0200\n"
18 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
19 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
20 "MIME-Version: 1.0\n"
21 "Content-Type: text/plain; charset=UTF-8\n"
22 "Content-Transfer-Encoding: 8bit\n"
23
24 #. Default
25 #: ../templates:3
26 msgid "http://www.debian.org/"
27 msgstr "http://www.debian.org/"
28
29 #. Description
30 #: ../templates:4
31 msgid "What is lynx's homepage?"
32 msgstr "Jaká má být domovská stránka lynxu?"
33
34 #. Description
35 #: ../templates:4
36 msgid ""
37 "Please enter the default URL to use if none is given when invoking lynx."
38 msgstr ""
39 "Zadejte výchozí url, které se použije, pokud při startu lynxu žádné nezadáte."
40
41 #. Description
42 #: ../templates:4
43 msgid ""
44 "You must enter either a full URL (including the \"http://\", etc.) or an "
45 "absolute pathname."
46 msgstr "Musíte zadat buď celé URL (včetně \"http://\") nebo absolutní cestu."
47
48 #. Description
49 #: ../templates:12
50 msgid "Please check old /etc/lynx.cfg"
51 msgstr "Zkontrolujte starý /etc/lynx.cfg"
52
53 #. Description
54 #: ../templates:12
55 msgid ""
56 "/etc/lynx.cfg is found but the configuration file of lynx-cur is /etc/lynx-"
57 "cur/lynx.cfg so /etc/lynx.cfg would be of lynx or lynx-ssl."
58 msgstr ""
59 "Byl sice nalezen soubor /etc/lynx.cur, ale lynx-cur používá konfigurační "
60 "soubor /etc/lynx-cur/lynx.cfg, takže nalezený /etc/lynx.cfg patří asi "
61 "balíku lynx nebo lynx-ssl."
62
63 #. Description
64 #: ../templates:12
65 msgid "Please check it and it will be better to PURGE lynx or lynx-ssl."
66 msgstr ""
67 "Bude lepší, když soubor zkontrolujete a poté lynx nebo lynx-ssl ODSTRANÍTE."
2828 define patch-dflt
2929 patch -NRp0 < debian/patch-1 || true
3030 patch -p0 < debian/patch-1
31 patch -NRp1 < debian/patch-3 || true
32 patch -p1 < debian/patch-3
3331 endef
3432
3533 define clean-dflt
36 patch -NRp1 < debian/patch-3 || true
3734 patch -NRp0 < debian/patch-1 || true
3835 endef
3936