1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/net/axa/files/patch-sratool_print.c
Don Lewis ea10553019 Upgrade axa to version 1.3.0.
Axa now contains some third party public domain code, add license info for
that.

Respect the chosen default SSL version.  The base version of OpenSSL in
FreeBSD 9 isn't good enough, so mark this port as IGNORE for that case.
Make the port work with the OpenSSL in base for the newer FreeBSD
branches.

Patch the source so that it doesn't install an unnecessary header that
would conflict with converters/libb64, and fix a format string type
mismatch bug.

Sponsored by:	Farsight Security, Inc.
2016-07-02 07:13:44 +00:00

12 lines
366 B
C

--- sratool/print.c.orig 2016-06-29 19:21:44 UTC
+++ sratool/print.c
@@ -1202,7 +1202,7 @@ print_mgmt(axa_p_mgmt_t *mgmt, size_t mg
}
if (axa_debug != 0) {
- printf(" mgmt_len : %zdb\n", AXA_P2H32(mgmt_len));
+ printf(" mgmt_len : %"PRIu32"\n", AXA_P2H32(mgmt_len));
}
/* UINT32_MAX or UINT64_MAX == server error in gathering stat */