<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/include, branch manifest</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=manifest</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=manifest'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2018-05-13T07:15:58+00:00</updated>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2018-05-13T07:15:58+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2018-05-13T07:15:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=3ce461fdf3b7adfd44ea058fa0c5ca6d91a5bc5d'/>
<id>urn:sha1:3ce461fdf3b7adfd44ea058fa0c5ca6d91a5bc5d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libbb: new option FEATURE_ETC_SERVICES: if off, /etc/services reads often avoided</title>
<updated>2018-04-17T10:43:54+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-17T10:43:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=2aeb201c9751d4ee82978c623310e14b9e831b94'/>
<id>urn:sha1:2aeb201c9751d4ee82978c623310e14b9e831b94</id>
<content type='text'>
In practice, "wget http://host.com/" always uses port 80.
People explicitly set non-standard ports via options or parameters
("telnet 1.2.3.4 567" or "telnet 1.2.3.4 ftp") instead of modifying
/etc/services.

function                                             old     new   delta
telnet_main                                         1466    1464      -2
rdate_main                                           215     198     -17
fakeidentd_main                                      269     252     -17
parse_url                                            459     392     -67
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/4 up/down: 0/-103)           Total: -103 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>less: fix fallout from "use common routine to set raw termios"</title>
<updated>2018-04-16T08:24:48+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-16T08:24:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=058a153b6970660f3c284ac259986ae87507df9a'/>
<id>urn:sha1:058a153b6970660f3c284ac259986ae87507df9a</id>
<content type='text'>
Testcase: (sleep 10; ls) | busybox less

[...]
~           LICENSE
~                  Makefile
~                          Makefile.custom
~                                         Makefile.flags
[...]

less did not want this part:
+		/* dont convert NL to CR+NL on output */
+		newterm-&gt;c_oflag &amp;= ~(ONLCR);

function                                             old     new   delta
get_termios_and_make_raw                             108     115      +7

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>ar: stop using static data</title>
<updated>2018-04-15T12:18:16+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-15T12:18:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=b74e490629a75cb8c2cb798f0feadc2eb4dc5471'/>
<id>urn:sha1:b74e490629a75cb8c2cb798f0feadc2eb4dc5471</id>
<content type='text'>
function                                             old     new   delta
static.ar_long_names                                   4       -      -4
static.ar_long_name_size                               4       -      -4
get_header_ar                                        546     532     -14
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 0/1 up/down: 0/-22)             Total: -22 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2018-04-09T07:50:34+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2018-04-09T07:50:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=921c1ab66bad54d4ad8591bb74e41ac985248496'/>
<id>urn:sha1:921c1ab66bad54d4ad8591bb74e41ac985248496</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libarchive: failure to extract symlink isn't fatal</title>
<updated>2018-04-09T07:30:13+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2018-04-09T07:30:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=5b6f06f5eb8628955262508d153627fe6f2d1c8b'/>
<id>urn:sha1:5b6f06f5eb8628955262508d153627fe6f2d1c8b</id>
<content type='text'>
Recent upstream changes made the failure of symlink(2) when extracting
from an archive a fatal error.

The busybox-w32 implementation of symlink(2) always fails.  Just
issue a warning and move on.
</content>
</entry>
<entry>
<title>bzip2: fix two crashes on corrupted archives</title>
<updated>2018-04-08T18:05:04+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-08T18:02:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=38ccd6af8abbafff98d458a1c62909acfc09a514'/>
<id>urn:sha1:38ccd6af8abbafff98d458a1c62909acfc09a514</id>
<content type='text'>
As it turns out, longjmp'ing into freed stack is not healthy...

function                                             old     new   delta
unpack_usage_messages                                  -      97     +97
unpack_bz2_stream                                    369     409     +40
get_next_block                                      1667    1677     +10
get_bits                                             156     155      -1
start_bunzip                                         212     183     -29
bb_show_usage                                        181     120     -61
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 2/3 up/down: 147/-91)            Total: 56 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>libbb.h: always include sys/resource.h</title>
<updated>2018-04-08T15:23:27+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-08T15:23:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=7bcde5f00dc3a5c92f36bb6ef6bf849794cd766e'/>
<id>urn:sha1:7bcde5f00dc3a5c92f36bb6ef6bf849794cd766e</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>libbb: switch bb_ask_noecho() to "mallocing" string return API</title>
<updated>2018-04-07T13:50:30+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-07T13:50:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=17058a06c4333fc0c492c168c8a971ebd0fd5a5a'/>
<id>urn:sha1:17058a06c4333fc0c492c168c8a971ebd0fd5a5a</id>
<content type='text'>
function                                             old     new   delta
bb_ask_noecho                                        313     330     +17
get_cred_or_die                                      125     115     -10
passwd_main                                          995     958     -37
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 17/-47)            Total: -30 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>xargs: use bb_ask_y_confirmation_FILE() instead of homegrown copy</title>
<updated>2018-04-07T13:23:10+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2018-04-07T13:21:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=bae8fc4436f9aeb43ef0aaccd1c9b1b35b5a4617'/>
<id>urn:sha1:bae8fc4436f9aeb43ef0aaccd1c9b1b35b5a4617</id>
<content type='text'>
function                                             old     new   delta
bb_ask_y_confirmation_FILE                             -      83     +83
inetd_main                                          2033    2043     +10
udhcp_send_kernel_packet                             295     301      +6
rmescapes                                            306     310      +4
send_tree                                            353     355      +2
i2cdetect_main                                       674     672      -2
confirm_or_abort                                      43      38      -5
get_terminal_width_height                            242     234      -8
bb_ask_y_confirmation                                 76      10     -66
xargs_main                                           823     755     -68
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 4/5 up/down: 105/-149)          Total: -44 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
</feed>
