CVS commit: src/external/bsd/blacklist/lib

2019-11-11 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Mon Nov 11 09:24:56 UTC 2019

Modified Files:
src/external/bsd/blacklist/lib: blacklist.c

Log Message:
silence sign-conversion warning from clang


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/blacklist/lib/blacklist.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/blacklist/lib

2019-11-11 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Mon Nov 11 09:24:56 UTC 2019

Modified Files:
src/external/bsd/blacklist/lib: blacklist.c

Log Message:
silence sign-conversion warning from clang


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/blacklist/lib/blacklist.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/blacklist/lib/blacklist.c
diff -u src/external/bsd/blacklist/lib/blacklist.c:1.6 src/external/bsd/blacklist/lib/blacklist.c:1.7
--- src/external/bsd/blacklist/lib/blacklist.c:1.6	Wed Nov  6 20:50:01 2019
+++ src/external/bsd/blacklist/lib/blacklist.c	Mon Nov 11 09:24:56 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: blacklist.c,v 1.6 2019/11/06 20:50:01 christos Exp $	*/
+/*	$NetBSD: blacklist.c,v 1.7 2019/11/11 09:24:56 tnn Exp $	*/
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #endif
 
 #include 
-__RCSID("$NetBSD: blacklist.c,v 1.6 2019/11/06 20:50:01 christos Exp $");
+__RCSID("$NetBSD: blacklist.c,v 1.7 2019/11/11 09:24:56 tnn Exp $");
 
 #include 
 #include 
@@ -61,7 +61,7 @@ int
 blacklist_sa_r(struct blacklist *bl, int action, int rfd,
 	const struct sockaddr *sa, socklen_t slen, const char *msg)
 {
-	int internal_action;
+	bl_type_t internal_action;
 
 	/* internal values are not the same as user application values */
 	switch (action) {