From 6ce433c88543a800d080e35114c8e6145cc851a3 Mon Sep 17 00:00:00 2001 From: reyk Date: Thu, 21 Jul 2016 08:40:14 +0000 Subject: [PATCH] long to uint32_t port --- usr.sbin/switchd/ofp10.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/switchd/ofp10.c b/usr.sbin/switchd/ofp10.c index c12a326ec43..accba9497c6 100644 --- a/usr.sbin/switchd/ofp10.c +++ b/usr.sbin/switchd/ofp10.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofp10.c,v 1.5 2016/07/21 08:39:23 reyk Exp $ */ +/* $OpenBSD: ofp10.c,v 1.6 2016/07/21 08:40:14 reyk Exp $ */ /* * Copyright (c) 2013-2016 Reyk Floeter @@ -317,7 +317,7 @@ ofp10_packet_in(struct switchd *sc, struct switch_connection *con, struct ibuf *obuf = NULL; int ret = -1; size_t len; - long srcport, dstport; + uint32_t srcport, dstport; int addflow = 0; int addpacket = 0; -- 2.20.1