pkgsrc/ham/dpbox/patches/patch-as
wulf 9047ade2a9 Implemented changes for this package to use the REQD_DIR and CONF_FILES
framework for the installation of the configuration files.
Fixed compile warning message due to implicit casting
2006-04-21 02:07:53 +00:00

13 lines
470 B
Text

$NetBSD: patch-as,v 1.1 2006/04/21 02:07:54 wulf Exp $
--- box_sf.c.orig 2006-04-14 11:49:12.000000000 +0930
+++ box_sf.c 2006-04-14 11:49:40.000000000 +0930
@@ -3575,7 +3575,7 @@
case '!': /* send with resume offset */
w[0] = '\0';
- while (strlen(eingabe) > 1 && isdigit(eingabe[1])) {
+ while (strlen(eingabe) > 1 && isdigit((u_char) eingabe[1])) {
sprintf(w + strlen(w), "%c", eingabe[1]);
strdelete(eingabe, 1, 1);
}