mailing list of musl libc
 help / color / mirror / code / Atom feed
44f8e68c310519e765d3a2876b29b7084e53134f blob 252 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#include <resolv.h>

int dn_skipname(const unsigned char *s, const unsigned char *end)
{
	const unsigned char *p;
	for (p=s; p<end; p++) {
		if (!*p) return p-s+1;
		else if (*p>=192) {
			if (p+1<end) return p-s+2;
			else break;
		}
	}
	return -1;
}
debug log:

solving 44f8e68c ...
found 44f8e68c in https://inbox.vuxu.org/musl/1636016.5PCnkOXM1K@prometheus.sedrubal.de/ ||
	https://inbox.vuxu.org/musl/1676444.u5bekTFY47@prometheus.sedrubal.de/
found d54c2e5d in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 d54c2e5d04d941937743a0021c106ffd5afc34da	src/network/dn_skipname.c

applying [1/2] https://inbox.vuxu.org/musl/1636016.5PCnkOXM1K@prometheus.sedrubal.de/
diff --git a/src/network/dn_skipname.c b/src/network/dn_skipname.c
index d54c2e5d..44f8e68c 100644

Checking patch src/network/dn_skipname.c...
Applied patch src/network/dn_skipname.c cleanly.

skipping https://inbox.vuxu.org/musl/1676444.u5bekTFY47@prometheus.sedrubal.de/ for 44f8e68c
index at:
100644 44f8e68c310519e765d3a2876b29b7084e53134f	src/network/dn_skipname.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).