Re: slightly easier to read strlcpy/strlcat

2015-01-14 Thread Todd C. Miller
On Fri, 09 Jan 2015 08:57:28 -0700, "Todd C. Miller" wrote: > I've tabled the other strlcpy/strlcat version because it > required that the strings be traversed twice. > > However, these files were originally written with register variables > and can be simplified slightly now that we let the comp

slightly easier to read strlcpy/strlcat

2015-01-09 Thread Todd C. Miller
I've tabled the other strlcpy/strlcat version because it required that the strings be traversed twice. However, these files were originally written with register variables and can be simplified slightly now that we let the compiler decide what to put in registers. The changes are mostly cosmetic.