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
632
Issues
632
List
Boards
Labels
Service Desk
Milestones
Merge Requests
104
Merge Requests
104
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
6b74dcca
Commit
6b74dcca
authored
Feb 14, 2018
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
report argument error in human form
parent
4278230b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
bin/tests/name_test.c
bin/tests/name_test.c
+5
-7
util/copyrights
util/copyrights
+1
-1
No files found.
bin/tests/name_test.c
View file @
6b74dcca
/*
* Copyright (C) 1998-2001, 2003-2005, 2007, 2009, 2015-201
7
Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2001, 2003-2005, 2007, 2009, 2015-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
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: name_test.c,v 1.43 2009/09/02 23:48:01 tbox Exp $ */
#include <config.h>
#include <stdlib.h>
...
...
@@ -123,8 +121,8 @@ main(int argc, char *argv[]) {
dns_rootname
,
0
,
NULL
);
if
(
result
!=
0
)
{
fprintf
(
stderr
,
"dns_name_fromtext() failed: %
d
\n
"
,
result
);
"dns_name_fromtext() failed: %
s
\n
"
,
dns_result_totext
(
result
)
);
exit
(
1
);
}
origin
=
&
oname
.
name
;
...
...
@@ -147,8 +145,8 @@ main(int argc, char *argv[]) {
0
,
NULL
);
if
(
result
!=
0
)
{
fprintf
(
stderr
,
"dns_name_fromtext() failed: %
d
\n
"
,
result
);
"dns_name_fromtext() failed: %
s
\n
"
,
dns_result_totext
(
result
)
);
exit
(
1
);
}
}
...
...
util/copyrights
View file @
6b74dcca
...
...
@@ -496,7 +496,7 @@
./bin/tests/mem/win32/t_mem.vcxproj.in X 2013,2015,2016,2017
./bin/tests/mem/win32/t_mem.vcxproj.user X 2013
./bin/tests/mempool_test.c C 1999,2000,2001,2004,2007,2016
./bin/tests/name_test.c
C 1998,1999,2000,2001,2003,2004,2005,2007,2009,2015,2016,2017
./bin/tests/name_test.c
C 1998,1999,2000,2001,2003,2004,2005,2007,2009,2015,2016,2017,2018
./bin/tests/named.conf CONF-C 1999,2000,2001,2004,2007,2011,2015,2016
./bin/tests/names/Makefile.in MAKE 1999,2000,2001,2002,2004,2007,2009,2012,2014,2016,2017
./bin/tests/names/dns_name_compare_data X 1999,2000,2001
...
...
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