summaryrefslogtreecommitdiff
path: root/sbin/photurisd/config.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-12-06 02:17:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-12-06 02:17:43 +0000
commitc3b4b65e924d276ecb14f6f8254a5387eee64039 (patch)
tree1a278b6d46d76fb4b318955deaea1a068fbd3d7e /sbin/photurisd/config.c
parent0c408b075f1e6e1911db1000cfcbb398ffdae48e (diff)
unkown; torh@bogus.net
Diffstat (limited to 'sbin/photurisd/config.c')
-rw-r--r--sbin/photurisd/config.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/photurisd/config.c b/sbin/photurisd/config.c
index f0fc08aa7e9..9bc292d5378 100644
--- a/sbin/photurisd/config.c
+++ b/sbin/photurisd/config.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: config.c,v 1.9 2002/06/09 08:13:08 todd Exp $ */
+/* $OpenBSD: config.c,v 1.10 2002/12/06 02:17:42 deraadt Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
@@ -35,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: config.c,v 1.9 2002/06/09 08:13:08 todd Exp $";
+static char rcsid[] = "$OpenBSD: config.c,v 1.10 2002/12/06 02:17:42 deraadt Exp $";
#endif
#define _CONFIG_C_
@@ -263,7 +263,7 @@ init_attributes(void)
p3[i--] = 0;
if ((tmpatt.type = parse_type(p3)) == -1) {
- log_print("Unkown attribute type %s for %s in init_attributes()", p3, name);
+ log_print("Unknown attribute type %s for %s in init_attributes()", p3, name);
continue;
}
@@ -556,7 +556,7 @@ init_times(void)
else if (!strcmp(p, CONFIG_SPI_LIFETIME))
value = &spi_lifetime;
else {
- log_print("unkown options %s in init_times()", p);
+ log_print("unknown options %s in init_times()", p);
continue;
}
@@ -644,7 +644,7 @@ startup_parse(struct stateob *st, char *p2)
else if(!strcmp(p, OPT_AUTH))
st->flags |= IPSEC_OPT_AUTH;
else {
- log_print("Unkown options %s in startup_parse()", p);
+ log_print("Unknown options %s in startup_parse()", p);
continue;
}
}