~kaniini/pkgconf

Do not complain about malformed whitespace from \n on Version line v1 APPLIED

Ben: 1
 Do not complain about malformed whitespace from \n on Version  line

 1 files changed, 1 insertions(+), 1 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~kaniini/pkgconf/patches/10352/mbox | git am -3
Learn more about email & git

[PATCH] Do not complain about malformed whitespace from \n on Version line Export this patch

Every version line has a newline at the end; the malformed whitespace checker
should just check for trailing spaces and tabs.

Resolves https://todo.sr.ht/~kaniini/pkgconf/15
---
 libpkgconf/pkg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libpkgconf/pkg.c b/libpkgconf/pkg.c
index d91ccde..12e6362 100644
--- a/libpkgconf/pkg.c
+++ b/libpkgconf/pkg.c
@@ -99,7 +99,7 @@ pkgconf_pkg_parser_version_func(const pkgconf_client_t *client, pkgconf_pkg_t *p
	/* cut at any detected whitespace */
	p = pkgconf_tuple_parse(client, &pkg->vars, value);

	len = strcspn(p, " \t\r\n");
	len = strcspn(p, " \t");
	if (len)
	{
		i = p + (ptrdiff_t) len;
--
2.26.1