libsepol: ibpkeys.c: fix printf format string specifiers for subnet_prefix

Use PRIx64 to print the subnet_prefix (which is a uint64_t) instead
of lx.

Fixes #108

Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
This commit is contained in:
Stephen Smalley 2018-11-05 09:23:13 -05:00 committed by Nicolas Iooss
parent 3b0dbede9c
commit 49c13dd6bc
No known key found for this signature in database
GPG Key ID: C191415F340DAAA0
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
#include <netinet/in.h>
#include <stdlib.h>
#include <inttypes.h>
#include "debug.h"
#include "context.h"
@ -176,7 +177,7 @@ int sepol_ibpkey_query(sepol_handle_t *handle,
return STATUS_SUCCESS;
err:
ERR(handle, "could not query ibpkey subnet prefix: %#lx range %u - %u exists",
ERR(handle, "could not query ibpkey subnet prefix: %#" PRIx64 " range %u - %u exists",
subnet_prefix, low, high);
return STATUS_ERR;
}
@ -203,7 +204,7 @@ int sepol_ibpkey_modify(sepol_handle_t *handle,
return STATUS_SUCCESS;
err:
ERR(handle, "could not load ibpkey subnet prefix: %#lx range %u - %u exists",
ERR(handle, "could not load ibpkey subnet prefix: %#" PRIx64 " range %u - %u exists",
subnet_prefix, low, high);
if (ibpkey) {
context_destroy(&ibpkey->context[0]);