diff options
author | 2009-01-29 11:11:33 +0000 | |
---|---|---|
committer | 2009-01-29 11:11:33 +0000 | |
commit | 8b608177868e76e44d74b61665ea085c4592440e (patch) | |
tree | 7e442edd70c5def0bc23628115f0c10a77615c4c /sys | |
parent | Round brackets are not required. Back out previous commit. (diff) | |
download | wireguard-openbsd-8b608177868e76e44d74b61665ea085c4592440e.tar.xz wireguard-openbsd-8b608177868e76e44d74b61665ea085c4592440e.zip |
mpls_operation have to be 2 bytes long to store
operations correctly
ok claudio@ laurent@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netmpls/mpls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netmpls/mpls.h b/sys/netmpls/mpls.h index df287182ee5..a3c16e718a2 100644 --- a/sys/netmpls/mpls.h +++ b/sys/netmpls/mpls.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpls.h,v 1.17 2009/01/28 22:18:44 michele Exp $ */ +/* $OpenBSD: mpls.h,v 1.18 2009/01/29 11:11:33 michele Exp $ */ /* * Copyright (C) 1999, 2000 and 2001 AYAME Project, WIDE Project. @@ -96,7 +96,7 @@ struct sockaddr_mpls { struct rt_mpls { u_int32_t mpls_label; - u_int8_t mpls_operation; + u_int16_t mpls_operation; u_int8_t mpls_exp; }; |