diff options
| author | 2004-09-15 22:12:50 +0000 | |
|---|---|---|
| committer | 2004-09-15 22:12:50 +0000 | |
| commit | f82538e7ee2536e91564e27231a6e2e8a02746bd (patch) | |
| tree | dd9b16e0d6402e9af34c94f384d1fb32bfe128a1 | |
| parent | new machines supported (diff) | |
| download | wireguard-openbsd-f82538e7ee2536e91564e27231a6e2e8a02746bd.tar.xz wireguard-openbsd-f82538e7ee2536e91564e27231a6e2e8a02746bd.zip | |
size_t vs ssize_t confusion
| -rw-r--r-- | usr.sbin/dhcpd/dispatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/dispatch.c b/usr.sbin/dhcpd/dispatch.c index 5edf7508046..643cf5ca0b8 100644 --- a/usr.sbin/dhcpd/dispatch.c +++ b/usr.sbin/dhcpd/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.10 2004/05/25 17:41:54 canacar Exp $ */ +/* $OpenBSD: dispatch.c,v 1.11 2004/09/15 22:12:50 deraadt Exp $ */ /* * Copyright (c) 1995, 1996, 1997, 1998, 1999 @@ -385,7 +385,7 @@ got_one(struct protocol *l) struct sockaddr_in from; struct hardware hfrom; struct iaddr ifrom; - size_t result; + ssize_t result; union { unsigned char packbuf[4095]; struct dhcp_packet packet; |
