summaryrefslogtreecommitdiff
path: root/usr.bin/dig/lib/isc/include
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/dig/lib/isc/include')
-rw-r--r--usr.bin/dig/lib/isc/include/isc/error.h4
-rw-r--r--usr.bin/dig/lib/isc/include/isc/hmacsha.h6
-rw-r--r--usr.bin/dig/lib/isc/include/isc/lex.h3
-rw-r--r--usr.bin/dig/lib/isc/include/isc/log.h4
-rw-r--r--usr.bin/dig/lib/isc/include/isc/refcount.h3
-rw-r--r--usr.bin/dig/lib/isc/include/isc/resultclass.h4
-rw-r--r--usr.bin/dig/lib/isc/include/isc/sha1.h3
-rw-r--r--usr.bin/dig/lib/isc/include/isc/task.h4
-rw-r--r--usr.bin/dig/lib/isc/include/isc/timer.h3
-rw-r--r--usr.bin/dig/lib/isc/include/isc/util.h3
10 files changed, 10 insertions, 27 deletions
diff --git a/usr.bin/dig/lib/isc/include/isc/error.h b/usr.bin/dig/lib/isc/include/isc/error.h
index 55d663133f7..56265d7069a 100644
--- a/usr.bin/dig/lib/isc/include/isc/error.h
+++ b/usr.bin/dig/lib/isc/include/isc/error.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: error.h,v 1.4 2020/02/13 16:57:55 florian Exp $ */
+/* $Id: error.h,v 1.5 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_ERROR_H
#define ISC_ERROR_H 1
@@ -24,8 +24,6 @@
#include <sys/cdefs.h>
#include <stdarg.h>
-
-
typedef void (*isc_errorcallback_t)(const char *, int, const char *, va_list);
/*% unexpected error */
diff --git a/usr.bin/dig/lib/isc/include/isc/hmacsha.h b/usr.bin/dig/lib/isc/include/isc/hmacsha.h
index a416a20d02a..5ac88fcb6f2 100644
--- a/usr.bin/dig/lib/isc/include/isc/hmacsha.h
+++ b/usr.bin/dig/lib/isc/include/isc/hmacsha.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: hmacsha.h,v 1.4 2020/02/13 13:53:01 jsg Exp $ */
+/* $Id: hmacsha.h,v 1.5 2020/02/25 05:00:43 jsg Exp $ */
/*! \file isc/hmacsha.h
* This is the header file for the HMAC-SHA1, HMAC-SHA224, HMAC-SHA256,
@@ -45,7 +45,6 @@ typedef isc_hmacsha_t isc_hmacsha256_t;
typedef isc_hmacsha_t isc_hmacsha384_t;
typedef isc_hmacsha_t isc_hmacsha512_t;
-
void
isc_hmacsha1_init(isc_hmacsha1_t *ctx, const unsigned char *key,
unsigned int len);
@@ -80,7 +79,6 @@ isc_hmacsha224_sign(isc_hmacsha224_t *ctx, unsigned char *digest, size_t len);
isc_boolean_t
isc_hmacsha224_verify(isc_hmacsha224_t *ctx, unsigned char *digest, size_t len);
-
void
isc_hmacsha256_init(isc_hmacsha256_t *ctx, const unsigned char *key,
unsigned int len);
@@ -98,7 +96,6 @@ isc_hmacsha256_sign(isc_hmacsha256_t *ctx, unsigned char *digest, size_t len);
isc_boolean_t
isc_hmacsha256_verify(isc_hmacsha256_t *ctx, unsigned char *digest, size_t len);
-
void
isc_hmacsha384_init(isc_hmacsha384_t *ctx, const unsigned char *key,
unsigned int len);
@@ -116,7 +113,6 @@ isc_hmacsha384_sign(isc_hmacsha384_t *ctx, unsigned char *digest, size_t len);
isc_boolean_t
isc_hmacsha384_verify(isc_hmacsha384_t *ctx, unsigned char *digest, size_t len);
-
void
isc_hmacsha512_init(isc_hmacsha512_t *ctx, const unsigned char *key,
unsigned int len);
diff --git a/usr.bin/dig/lib/isc/include/isc/lex.h b/usr.bin/dig/lib/isc/include/isc/lex.h
index 6ec56bc0cea..58168faa099 100644
--- a/usr.bin/dig/lib/isc/include/isc/lex.h
+++ b/usr.bin/dig/lib/isc/include/isc/lex.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: lex.h,v 1.5 2020/02/23 23:40:22 jsg Exp $ */
+/* $Id: lex.h,v 1.6 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_LEX_H
#define ISC_LEX_H 1
@@ -291,7 +291,6 @@ isc_lex_getsourcename(isc_lex_t *lex);
*\li result valid while current input source exists.
*/
-
unsigned long
isc_lex_getsourceline(isc_lex_t *lex);
/*%<
diff --git a/usr.bin/dig/lib/isc/include/isc/log.h b/usr.bin/dig/lib/isc/include/isc/log.h
index 1c266921f05..792cb542786 100644
--- a/usr.bin/dig/lib/isc/include/isc/log.h
+++ b/usr.bin/dig/lib/isc/include/isc/log.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: log.h,v 1.6 2020/02/17 18:58:39 jung Exp $ */
+/* $Id: log.h,v 1.7 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_LOG_H
#define ISC_LOG_H 1
@@ -24,8 +24,6 @@
#include <stdio.h>
#include <stdarg.h>
-
-
#include <isc/types.h>
/*@{*/
diff --git a/usr.bin/dig/lib/isc/include/isc/refcount.h b/usr.bin/dig/lib/isc/include/isc/refcount.h
index 7232e485ce3..16520451a82 100644
--- a/usr.bin/dig/lib/isc/include/isc/refcount.h
+++ b/usr.bin/dig/lib/isc/include/isc/refcount.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: refcount.h,v 1.2 2020/02/13 13:53:01 jsg Exp $ */
+/* $Id: refcount.h,v 1.3 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_REFCOUNT_H
#define ISC_REFCOUNT_H 1
@@ -84,7 +84,6 @@
* ref != NULL.
*/
-
/*
* Sample implementations
*/
diff --git a/usr.bin/dig/lib/isc/include/isc/resultclass.h b/usr.bin/dig/lib/isc/include/isc/resultclass.h
index fc11d628c88..9136cf756ad 100644
--- a/usr.bin/dig/lib/isc/include/isc/resultclass.h
+++ b/usr.bin/dig/lib/isc/include/isc/resultclass.h
@@ -14,12 +14,11 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: resultclass.h,v 1.1 2020/02/07 09:58:54 florian Exp $ */
+/* $Id: resultclass.h,v 1.2 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_RESULTCLASS_H
#define ISC_RESULTCLASS_H 1
-
/*! \file isc/resultclass.h
* \brief Registry of Predefined Result Type Classes
*
@@ -37,7 +36,6 @@
#define ISC_RESULTCLASS_INCLASS(rclass, result) \
((rclass) == ((result) & 0xFFFF0000))
-
#define ISC_RESULTCLASS_ISC ISC_RESULTCLASS_FROMNUM(0)
#define ISC_RESULTCLASS_DNS ISC_RESULTCLASS_FROMNUM(1)
#define ISC_RESULTCLASS_DST ISC_RESULTCLASS_FROMNUM(2)
diff --git a/usr.bin/dig/lib/isc/include/isc/sha1.h b/usr.bin/dig/lib/isc/include/isc/sha1.h
index ab81aac3bd2..3e3cc0f2293 100644
--- a/usr.bin/dig/lib/isc/include/isc/sha1.h
+++ b/usr.bin/dig/lib/isc/include/isc/sha1.h
@@ -17,7 +17,7 @@
#ifndef ISC_SHA1_H
#define ISC_SHA1_H 1
-/* $Id: sha1.h,v 1.5 2020/02/17 18:58:39 jung Exp $ */
+/* $Id: sha1.h,v 1.6 2020/02/25 05:00:43 jsg Exp $ */
/* $NetBSD: sha1.h,v 1.2 1998/05/29 22:55:44 thorpej Exp $ */
@@ -36,7 +36,6 @@ typedef struct {
EVP_MD_CTX *ctx;
} isc_sha1_t;
-
void
isc_sha1_init(isc_sha1_t *ctx);
diff --git a/usr.bin/dig/lib/isc/include/isc/task.h b/usr.bin/dig/lib/isc/include/isc/task.h
index b87df4307eb..02902a8b493 100644
--- a/usr.bin/dig/lib/isc/include/isc/task.h
+++ b/usr.bin/dig/lib/isc/include/isc/task.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: task.h,v 1.7 2020/02/22 19:47:07 jung Exp $ */
+/* $Id: task.h,v 1.8 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_TASK_H
#define ISC_TASK_H 1
@@ -74,7 +74,6 @@
* unsend events which they have sent.
*/
-
/***
*** Imports.
***/
@@ -214,7 +213,6 @@ isc_task_sendanddetach(isc_task_t **taskp, isc_event_t **eventp);
* all resources used by the task will be freed.
*/
-
unsigned int
isc_task_purgerange(isc_task_t *task, void *sender, isc_eventtype_t first,
isc_eventtype_t last, void *tag);
diff --git a/usr.bin/dig/lib/isc/include/isc/timer.h b/usr.bin/dig/lib/isc/include/isc/timer.h
index 59f725696cb..a32996fb0d6 100644
--- a/usr.bin/dig/lib/isc/include/isc/timer.h
+++ b/usr.bin/dig/lib/isc/include/isc/timer.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: timer.h,v 1.11 2020/02/24 13:49:39 jsg Exp $ */
+/* $Id: timer.h,v 1.12 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_TIMER_H
#define ISC_TIMER_H 1
@@ -66,7 +66,6 @@
* None.
*/
-
/***
*** Imports
***/
diff --git a/usr.bin/dig/lib/isc/include/isc/util.h b/usr.bin/dig/lib/isc/include/isc/util.h
index 9a460785692..c1353fc2204 100644
--- a/usr.bin/dig/lib/isc/include/isc/util.h
+++ b/usr.bin/dig/lib/isc/include/isc/util.h
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: util.h,v 1.2 2020/02/16 21:11:02 florian Exp $ */
+/* $Id: util.h,v 1.3 2020/02/25 05:00:43 jsg Exp $ */
#ifndef ISC_UTIL_H
#define ISC_UTIL_H 1
@@ -113,7 +113,6 @@
* Performance
*/
-
/*
* Assertions
*/