diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-09-11 10:13:21 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-09-11 10:13:21 +0000 |
commit | eb9049961eca67955e2c403b93c9801f92c4b5c3 (patch) | |
tree | 271bf1ca967b6e9a1f40475b28186463338a0007 /sbin/isakmpd/apps | |
parent | e61e8d34c013f7d9405d5bf2fdd76d2d750f7db8 (diff) |
signed vs unsigned from -pedantic.
Diffstat (limited to 'sbin/isakmpd/apps')
-rw-r--r-- | sbin/isakmpd/apps/certpatch/certpatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/apps/certpatch/certpatch.c b/sbin/isakmpd/apps/certpatch/certpatch.c index cc6cd84fc6f..baec32df3c5 100644 --- a/sbin/isakmpd/apps/certpatch/certpatch.c +++ b/sbin/isakmpd/apps/certpatch/certpatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: certpatch.c,v 1.19 2002/08/02 17:09:29 aaron Exp $ */ +/* $OpenBSD: certpatch.c,v 1.20 2002/09/11 10:13:20 ho Exp $ */ /* $EOM: certpatch.c,v 1.11 2000/12/21 14:50:09 ho Exp $ */ /* @@ -96,7 +96,7 @@ main (int argc, char **argv) X509_EXTENSION *ex = NULL; ASN1_OCTET_STRING *data = NULL; struct in_addr saddr; - char ipaddr[6], *new_id; + unsigned char ipaddr[6], *new_id; char *type = IDTYPE_IP, *keyfile = NULL, *id = NULL; char *certin, *certout; int ch, err; |