[Toybox] [CLEANUP] tftpd

2013-12-23 Thread Rob Landley
On 11/24/2013 08:17:24 PM, ibid...@gmail.com wrote: I ran into build errors with tftpd and dumpleases, so here's a fix: POLL_IN is a POSIX macro in signal.h, so we need to use another label. Which libc hit that? toynet.h was deleted before dumpleases was merged. While I was at it, I thought

Re: [Toybox] [Patch] - Traceroute with IPv6 support

2013-12-23 Thread Rob Landley
On 11/25/2013 05:54:54 AM, Ashwini Sharma wrote: Hi All, IPv6 support is added into traceroute command. traceroute6 is made as an old toy of traceroute. Attached is the updated file. Have a look at the same and let me know for inputs. Thanks, Ashwini Sharma Applied, with get_int_value() -

Re: [Toybox] [New Toy] - groupdel

2013-12-23 Thread Rob Landley
On 11/25/2013 06:35:17 AM, Ashwini Sharma wrote: Hi Rob, list, Attached is an implementation for groupdel. This is aliased to delgroup, for a requirement at my end. Also lib/password.c is modified to along with. Applied, but let me just say: } else if (!strcmp(toys.which-name,

Re: [Toybox] [Patch] - adding '-B' to grep

2013-12-23 Thread Rob Landley
On 12/06/13 11:42, ibid...@gmail.com wrote: On Fri, Dec 06, 2013 at 06:44:36PM +0530, Ashwini Sharma wrote: Hi Rob, list, _-B_ option support for printing leading context lines, before the match, is added to grep command. There are actually three related options: -A, -B, and -C. After,