Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
580
Issues
580
List
Boards
Labels
Service Desk
Milestones
Merge Requests
111
Merge Requests
111
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
ea8e149f
Commit
ea8e149f
authored
Feb 14, 2018
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use %u instead of %d
parent
b060852a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
bin/dnssec/dnssec-signzone.c
bin/dnssec/dnssec-signzone.c
+10
-10
util/copyrights
util/copyrights
+1
-1
No files found.
bin/dnssec/dnssec-signzone.c
View file @
ea8e149f
/*
* Portions Copyright (C) 1999-201
7
Internet Systems Consortium, Inc. ("ISC")
* Portions Copyright (C) 1999-201
8
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
...
...
@@ -2513,11 +2513,11 @@ loadzonekeys(isc_boolean_t preserve_keys, isc_boolean_t load_public) {
goto
cleanup
;
if
(
set_keyttl
&&
keyttl
!=
rdataset
.
ttl
)
{
fprintf
(
stderr
,
"User-specified TTL %
d
conflicts "
fprintf
(
stderr
,
"User-specified TTL %
u
conflicts "
"with existing DNSKEY RRset TTL.
\n
"
,
keyttl
);
fprintf
(
stderr
,
"Imported keys will use the RRSet "
"TTL %
d
instead.
\n
"
,
"TTL %
u
instead.
\n
"
,
rdataset
.
ttl
);
}
keyttl
=
rdataset
.
ttl
;
...
...
@@ -3128,12 +3128,12 @@ print_stats(isc_time_t *timer_start, isc_time_t *timer_finish,
isc_uint64_t
sig_ms
;
/* Signatures per millisecond */
FILE
*
out
=
output_stdout
?
stderr
:
stdout
;
fprintf
(
out
,
"Signatures generated: %10
d
\n
"
,
nsigned
);
fprintf
(
out
,
"Signatures retained: %10
d
\n
"
,
nretained
);
fprintf
(
out
,
"Signatures dropped: %10
d
\n
"
,
ndropped
);
fprintf
(
out
,
"Signatures successfully verified: %10
d
\n
"
,
nverified
);
fprintf
(
out
,
"Signatures generated: %10
u
\n
"
,
nsigned
);
fprintf
(
out
,
"Signatures retained: %10
u
\n
"
,
nretained
);
fprintf
(
out
,
"Signatures dropped: %10
u
\n
"
,
ndropped
);
fprintf
(
out
,
"Signatures successfully verified: %10
u
\n
"
,
nverified
);
fprintf
(
out
,
"Signatures unsuccessfully "
"verified: %10
d
\n
"
,
nverifyfailed
);
"verified: %10
u
\n
"
,
nverifyfailed
);
time_us
=
isc_time_microdiff
(
sign_finish
,
sign_start
);
time_ms
=
time_us
/
1000
;
...
...
@@ -3646,8 +3646,8 @@ main(int argc, char *argv[]) {
get_soa_ttls
();
if
(
set_maxttl
&&
set_keyttl
&&
keyttl
>
maxttl
)
{
fprintf
(
stderr
,
"%s: warning: Specified key TTL %
d
"
"exceeds maximum zone TTL; reducing to %
d
\n
"
,
fprintf
(
stderr
,
"%s: warning: Specified key TTL %
u
"
"exceeds maximum zone TTL; reducing to %
u
\n
"
,
program
,
keyttl
,
maxttl
);
keyttl
=
maxttl
;
}
...
...
util/copyrights
View file @
ea8e149f
...
...
@@ -133,7 +133,7 @@
./bin/dnssec/dnssec-settime.docbook SGML 2009,2010,2011,2014,2015,2016,2017
./bin/dnssec/dnssec-settime.html HTML DOCBOOK
./bin/dnssec/dnssec-signzone.8 MAN DOCBOOK
./bin/dnssec/dnssec-signzone.c
C.NAI 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017
./bin/dnssec/dnssec-signzone.c
C.NAI 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018
./bin/dnssec/dnssec-signzone.docbook SGML 2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2011,2012,2013,2014,2015,2016,2017
./bin/dnssec/dnssec-signzone.html HTML DOCBOOK
./bin/dnssec/dnssec-verify.8 MAN DOCBOOK
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment