summaryrefslogtreecommitdiff
path: root/usr.sbin/keyadmin
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2002-10-16 15:56:13 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2002-10-16 15:56:13 +0000
commitcd9b47f3c2636a85aad93b0fe25b8c4d0d8f8fd7 (patch)
treef2d2c175d1df137ee7125217af52e228285416c5 /usr.sbin/keyadmin
parent557f7e714d1318431bebfbd25e7ec7b52c5020b0 (diff)
Notes
Diffstat (limited to 'usr.sbin/keyadmin')
-rw-r--r--usr.sbin/keyadmin/keyadmin.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/keyadmin/keyadmin.c b/usr.sbin/keyadmin/keyadmin.c
index 1bbd3b8403db..d34c60d266e2 100644
--- a/usr.sbin/keyadmin/keyadmin.c
+++ b/usr.sbin/keyadmin/keyadmin.c
@@ -75,6 +75,9 @@ Research Laboratory (NRL).
* $ANA: keyadmin.c,v 1.2 1996/06/13 19:42:40 wollman Exp $
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
@@ -221,7 +224,7 @@ struct nametonum encralgorithms[] = {
* These numbers should be defined in a header file somewhere
* and shared with the consuming programs, once someone has
* actually written the support in those programs (rspvd,
- * gated, and routed). Probably <protocols/*>...?
+ * gated, and routed). Probably <protocols/...>...?
*/
#define RSVP_AUTHTYPE_MD5 1 /* XXX */
struct nametonum rsvpalgorithms[] = {
@@ -825,7 +828,7 @@ void printkeymsg(kmp, kdp)
printf("type=%d(%s) ",kmp->type, parsenumtoname(keytypes, kmp->type));
printf("spi=%u ", kmp->spi);
- printf("alogrithm=%u(%s) ", kmp->algorithm,
+ printf("algorithm=%u(%s) ", kmp->algorithm,
parsenumtoname(algorithmtabs[parsenumtoflag(keytypes, kmp->type)],
kmp->algorithm));
printf("state=0x%x ",kmp->state);