From: Mark Andrews Date: Wed, 14 Feb 2018 07:18:12 +0000 (+1100) Subject: use %u instead of %i X-Git-Tag: v9.13.0~155^2~3^2~68 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=f9a9ff57ce38bb56d87c878a88d8948a7e1b9d22;p=thirdparty%2Fbind9.git use %u instead of %i --- diff --git a/bin/pkcs11/pkcs11-list.c b/bin/pkcs11/pkcs11-list.c index c79ee9ace62..05d24d9deef 100644 --- a/bin/pkcs11/pkcs11-list.c +++ b/bin/pkcs11/pkcs11-list.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009, 2014-2016 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2009, 2014-2016, 2018 Internet Systems Consortium, Inc. ("ISC") * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -125,7 +125,7 @@ main(int argc, char *argv[]) { printf("slot %lu\n", slot); if (id) { - printf("id %i\n", id); + printf("id %u\n", id); attr_id[0] = (id >> 8) & 0xff; attr_id[1] = id & 0xff; } else if (label != NULL) { diff --git a/util/copyrights b/util/copyrights index e30b408631a..1ef4776c905 100644 --- a/util/copyrights +++ b/util/copyrights @@ -250,7 +250,7 @@ ./bin/pkcs11/pkcs11-keygen.docbook SGML 2009,2014,2015,2016,2017 ./bin/pkcs11/pkcs11-keygen.html HTML DOCBOOK ./bin/pkcs11/pkcs11-list.8 MAN DOCBOOK -./bin/pkcs11/pkcs11-list.c C 2009,2014,2015,2016 +./bin/pkcs11/pkcs11-list.c C 2009,2014,2015,2016,2018 ./bin/pkcs11/pkcs11-list.docbook SGML 2009,2014,2015,2016 ./bin/pkcs11/pkcs11-list.html HTML DOCBOOK ./bin/pkcs11/pkcs11-tokens.8 MAN DOCBOOK