Re: [Toybox] git.c progress

2023-01-03 Thread Rob Landley
On 1/2/23 16:20, Moritz Christian Weber wrote: > Hi, > It seem I CCed the mailing list accidentally ;-). Um, sorry. That was me. (The code is now checked in, so I wanted to ask about it here. I edited a subsection of relevant comments from the emails about the code as checkin comments. Shoulda ask

Re: [Toybox] git.c progress

2023-01-03 Thread Rob Landley
On 1/3/23 09:04, Rob Landley wrote: >> The git pack format V2 is documented here: >> https://github.com/git/git/blob/master/Documentation/gitformat-pack.txt#L266 > > Ooh, cool! > > Imma go read that. Back once I have enough of a frame of reference to hold an > intelligent conversation with you on

[Toybox] [PATCH 0/1] Remove uncommented code and improved git fetch and mail address

2023-01-03 Thread Moritz C. Weber
*** BLURB HERE *** Moritz C. Weber (1): Remove uncommented code, added fetch master head to git fetch and corrected the authers mail address toys/pending/git.c | 167 + 1 file changed, 31 insertions(+), 136 deletions(-) -- 2.20.1 _

[Toybox] [PATCH 1/2] Adding a minimal nslookup frontend to host.c

2023-01-03 Thread Moritz C. Weber
--- toys/net/host.c | 98 +++-- 1 file changed, 63 insertions(+), 35 deletions(-) diff --git a/toys/net/host.c b/toys/net/host.c index 20331678..933f4fb7 100644 --- a/toys/net/host.c +++ b/toys/net/host.c @@ -7,6 +7,7 @@ * See https://www.ietf.org/rfc

Re: [Toybox] [PATCH 1/2] Adding a minimal nslookup frontend to host.c

2023-01-03 Thread Moritz Christian Weber
Dear all, please ignore this one, which was still pending in outgoing, but rolled back by Rob.. Best regards, Moritz On Tue, Jan 3, 2023 at 10:18 PM Moritz C. Weber wrote: > --- > toys/net/host.c | 98 +++-- > 1 file changed, 63 insertions(+), 35 del

[Toybox] [PATCH 0/1] Remove uncommented code and improved git fetch and mail address

2023-01-03 Thread Moritz C. Weber
*** BLURB HERE *** Moritz C. Weber (1): Remove uncommented code, added fetch master head to git fetch and corrected the authers mail address toys/pending/git.c | 167 + 1 file changed, 31 insertions(+), 136 deletions(-) -- 2.20.1 _

[Toybox] [PATCH 1/1] Remove uncommented code, added fetch master head to git fetch and corrected the authers mail address

2023-01-03 Thread Moritz C. Weber
--- toys/pending/git.c | 167 + 1 file changed, 31 insertions(+), 136 deletions(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 4b1c1802..0e79ac60 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -1,6 +1,6 @@ /* git.c - A minim

[Toybox] [PATCH 2/2] More cleanups and more (improved) comments

2023-01-03 Thread Moritz C. Weber
--- toys/pending/git.c | 64 +- 1 file changed, 35 insertions(+), 29 deletions(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 0e79ac60..36d046d7 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -70,20 +70,21 @@ config GITCHECKO

[Toybox] [PATCH 3/3] Further comment cleanup

2023-01-03 Thread Moritz C. Weber
--- toys/pending/git.c | 13 ++--- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 36d046d7..f8f7a9f4 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -76,10 +76,10 @@ GLOBALS( //git index format v2 described at ht

Re: [Toybox] xmemcmp()

2023-01-03 Thread enh via Toybox
On Mon, Jan 2, 2023 at 11:20 AM Rob Landley wrote: > On 1/1/23 18:06, Ray Gardner wrote: > > Some questions and comments on the memcmp() issue from the 2022-12-23 > notes.html > > entry. > > > > I suspect that memcmp("a", "abc", 4); is a simplified version of the > actual case > > that caused an