Re: kill.c correctness

2011-06-06 Thread David Coppa
On Mon, Jun 6, 2011 at 9:16 AM, Otto Moerbeek wrote: > Looks good, any other ok? yep. ok for me too. ciao, David > On Mon, Jun 06, 2011 at 01:32:57AM -0300, pablo caballero wrote: > >> "if (!*argv || *ep)" should be "if (!**argv || *ep)" but !**argv is >> already granted by !isdigit(**argv) >>

Re: kill.c correctness

2011-06-06 Thread Otto Moerbeek
Looks good, any other ok? -0tto On Mon, Jun 06, 2011 at 01:32:57AM -0300, pablo caballero wrote: > "if (!*argv || *ep)" should be "if (!**argv || *ep)" but !**argv is > already granted by !isdigit(**argv) > > Index: kill.c > ==

kill.c correctness

2011-06-05 Thread pablo caballero
"if (!*argv || *ep)" should be "if (!**argv || *ep)" but !**argv is already granted by !isdigit(**argv) Index: kill.c === RCS file: /cvs/src/bin/kill/kill.c,v retrieving revision 1.9 diff -u -r1.9 kill.c --- kill.c 27 Oct 2009 23