File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ --- a/database.c 2026-01-26 11:04:38.000000000 +0100
2+ +++ b/database.c 2026-03-01 02:11:46.310427997 +0000
3+ @@ -12,6 +12,7 @@
4+ #include <string.h>
5+ #include <unistd.h>
6+ #include <assert.h>
7+ + #include <ctype.h>
8+ #ifdef HAVE_CONFIG_H
9+ # include "config.h"
10+ #endif
11+ @@ -737,7 +738,7 @@
12+ {
13+ char* p = str;
14+ while (*str) {
15+ - if (isalnum (*str)) *(p++) = *str;
16+ + if (isalnum((unsigned char)*str)) *(p++) = *str;
17+ ++str;
18+ }
19+ *p = 0;
Original file line number Diff line number Diff line change 11# Template file for 'abook'
22pkgname=abook
3- version=0.6.1
4- revision=3
3+ version=0.6.2
4+ revision=1
55build_style=gnu-configure
66hostmakedepends="automake libtool gettext gettext-devel tar"
77makedepends="ncurses-devel readline-devel"
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
1010license="GPL-2.0-or-later"
1111homepage="http://abook.sourceforge.net/"
1212distfiles="http://abook.sourceforge.net/devel/${pkgname}-${version}.tar.gz"
13- checksum=f0a90df8694fb34685ecdd45d97db28b88046c15c95e7b0700596028bd8bc0f9
13+ checksum=2d6bde2d2d03523f164f930e4fdec6025f3a94abe48a43706f543880a1a21ebe
1414
1515post_extract() {
1616 autoreconf --install
You can’t perform that action at this time.
0 commit comments