summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2016-07-21 08:40:15 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2016-07-21 08:40:15 +0000
commit347942d23de815c810539daf60806d3999754c3b (patch)
treef55438d3668ea694bb8312c8307aac0001992eb7 /usr.sbin
parentf5d6892382f467fdc3630a364dd64df1e02ba978 (diff)
long to uint32_t port
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/switchd/ofp10.c4
1 files 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 <reyk@openbsd.org>
@@ -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;