[Toybox] [PATCH 0/1] Added basic post-data support to wget.c

2022-03-26 Thread Moritz C. Weber
, which I plan. Best regards, Moritz Moritz C. Weber (1): Added basic post-data support toys/pending/wget.c | 21 +++-- 1 file changed, 15 insertions(+), 6 deletions(-) -- 2.20.1 ___ Toybox mailing list Toybox@lists.landley.net http

[Toybox] [PATCH 1/1] Added basic post-data support

2022-03-26 Thread Moritz C. Weber
--- toys/pending/wget.c | 21 +++-- 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/toys/pending/wget.c b/toys/pending/wget.c index bcb42f8d..ec25a9c8 100644 --- a/toys/pending/wget.c +++ b/toys/pending/wget.c @@ -26,7 +26,7 @@ * todo: Add support for Transfer

[Toybox] [PATCH 2/2] Fix a segfault due to a wrong order global variables of wget

2022-03-29 Thread Moritz C. Weber
--- toys/pending/wget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/pending/wget.c b/toys/pending/wget.c index de8a117f..03f98754 100644 --- a/toys/pending/wget.c +++ b/toys/pending/wget.c @@ -77,8 +77,8 @@ config WGET_OPENSSL #define WGET_IS_HTTPS (WGET_SSL &&

[Toybox] [PATCH 2/2] Replaced sizeof by strlen in wget POST

2022-03-29 Thread Moritz C. Weber
--- toys/pending/wget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/pending/wget.c b/toys/pending/wget.c index 0bf6e5b8..9dd6560f 100644 --- a/toys/pending/wget.c +++ b/toys/pending/wget.c @@ -286,7 +286,7 @@ void wget_main(void) "User-Agent:

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

2022-06-06 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

[Toybox] [PATCH 2/2] Added interactive mode to nslookup in host.c

2022-06-06 Thread Moritz C. Weber
--- toys/net/host.c | 33 +++-- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/toys/net/host.c b/toys/net/host.c index 933f4fb7..cefac7e2 100644 --- a/toys/net/host.c +++ b/toys/net/host.c @@ -7,7 +7,7 @@ * See https://www.ietf.org/rfc/rfc3596.txt

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

2022-06-06 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

[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

[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

[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
- A minimal git clone * - * Copyright 2022 Moritz C. Weber + * Copyright 2022 Moritz C. Weber * * See https://git-scm.com/docs/git-init * https://git-scm.com/docs/git-remote @@ -9,7 +9,7 @@ * https://git-scm.com/docs/pack-format * https://git-scm.com/docs/index-format * https

[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 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

[Toybox] [PATCH 1/1] Fixed 3 bugs from the android code review

2023-01-19 Thread Moritz C. Weber
--- toys/pending/git.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 63e8dcc4..505bcee5 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -117,7 +117,7 @@ static void read_index(struct IndexV2 *i) } }

[Toybox] [PATCH 0/1] Fixed 3 bugs from the code review

2023-01-19 Thread Moritz C. Weber
Thanks a lot for reviewing my code! Moritz C. Weber (1): Fixed 3 bugs from the android code review toys/pending/git.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) -- 2.20.1 ___ Toybox mailing list Toybox@lists.landley.net

[Toybox] [PATCH 1/2] Fixed 3 bugs from the android code review

2023-01-19 Thread Moritz C. Weber
--- toys/pending/git.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 63e8dcc4..505bcee5 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -117,7 +117,7 @@ static void read_index(struct IndexV2 *i) } }

[Toybox] [PATCH 2/2] Missing 's' was causing a segfault due to file not found

2023-01-19 Thread Moritz C. Weber
--- toys/pending/git.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/pending/git.c b/toys/pending/git.c index 505bcee5..82421483 100644 --- a/toys/pending/git.c +++ b/toys/pending/git.c @@ -529,7 +529,7 @@ static void gitfetch(void) 0}); //char h[] =

[Toybox] [PATCH 0/2] Missing s was causing a segfault due to file not found

2023-01-19 Thread Moritz C. Weber
Typo fixed Moritz C. Weber (2): Fixed 3 bugs from the android code review Missing 's' was causing a segfault due to file not found toys/pending/git.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) -- 2.20.1 ___ Toybox

[Toybox] [PATCH 0/1] Fixed broken musl URL in README

2023-02-01 Thread Moritz C. Weber
Pointed to an page which warned about an obsolete version Moritz C. Weber (1): Fixed broken musl link in readme README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.30.2 ___ Toybox mailing list Toybox@lists.landley.net http

[Toybox] [PATCH 1/1] Fixed broken musl link in readme

2023-02-01 Thread Moritz C. Weber
--- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index f39c9216..ba3041d2 100644 --- a/README +++ b/README @@ -39,7 +39,7 @@ toybox to run on the current machine. Cross compiling requires an appropriately prefixed cross compiler toolchain, several