Module Name: src Committed By: nia Date: Sat Apr 10 20:07:57 UTC 2021
Modified Files: src/external/bsd/pkg_install/dist/add: perform.c Log Message: fix build, sign comparison is an issue here To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/pkg_install/dist/add/perform.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/bsd/pkg_install/dist/add/perform.c diff -u src/external/bsd/pkg_install/dist/add/perform.c:1.9 src/external/bsd/pkg_install/dist/add/perform.c:1.10 --- src/external/bsd/pkg_install/dist/add/perform.c:1.9 Sat Apr 10 19:49:59 2021 +++ src/external/bsd/pkg_install/dist/add/perform.c Sat Apr 10 20:07:57 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: perform.c,v 1.9 2021/04/10 19:49:59 nia Exp $ */ +/* $NetBSD: perform.c,v 1.10 2021/04/10 20:07:57 nia Exp $ */ #if HAVE_CONFIG_H #include "config.h" #endif @@ -6,7 +6,7 @@ #if HAVE_SYS_CDEFS_H #include <sys/cdefs.h> #endif -__RCSID("$NetBSD: perform.c,v 1.9 2021/04/10 19:49:59 nia Exp $"); +__RCSID("$NetBSD: perform.c,v 1.10 2021/04/10 20:07:57 nia Exp $"); /*- * Copyright (c) 2003 Grant Beattie <gr...@netbsd.org> @@ -159,7 +159,7 @@ compatible_platform(const char *opsys, c loc = strchr(host, '.'); if (loc != NULL) { majorlen = loc - host; - if (majorlen != (strchr(package, '.') - package)) + if (majorlen != (size_t)(strchr(package, '.') - package)) return 0; if (strncmp(host, package, majorlen) == 0) return 1;