diff options
-rw-r--r-- | kerberosV/src/config.guess | 2 | ||||
-rw-r--r-- | sbin/photurisd/compute_secrets.c | 6 | ||||
-rw-r--r-- | sbin/photurisd/config.c | 10 | ||||
-rw-r--r-- | sbin/photurisd/identity.c | 14 | ||||
-rw-r--r-- | sys/arch/hp300/dev/grf_tc.c | 4 | ||||
-rw-r--r-- | usr.sbin/bootpd/readfile.c | 4 |
6 files changed, 20 insertions, 20 deletions
diff --git a/kerberosV/src/config.guess b/kerberosV/src/config.guess index 265ea69c444..2097d36e367 100644 --- a/kerberosV/src/config.guess +++ b/kerberosV/src/config.guess @@ -756,7 +756,7 @@ main(argc, argv) #if defined(__GLIBC__) printf("%s %s\n", __libc_version, __libc_release); #else - printf("unkown\n"); + printf("unknown\n"); #endif return 0; } diff --git a/sbin/photurisd/compute_secrets.c b/sbin/photurisd/compute_secrets.c index ec18bbd7bd2..23cc60e15b4 100644 --- a/sbin/photurisd/compute_secrets.c +++ b/sbin/photurisd/compute_secrets.c @@ -1,4 +1,4 @@ -/* $OpenBSD: compute_secrets.c,v 1.6 2002/06/09 08:13:08 todd Exp $ */ +/* $OpenBSD: compute_secrets.c,v 1.7 2002/12/06 02:17:42 deraadt Exp $ */ /* * Copyright 1997-2000 Niels Provos <provos@citi.umich.edu> @@ -36,7 +36,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: compute_secrets.c,v 1.6 2002/06/09 08:13:08 todd Exp $"; +static char rcsid[] = "$OpenBSD: compute_secrets.c,v 1.7 2002/12/06 02:17:42 deraadt Exp $"; #endif #define _SECRETS_C_ @@ -236,7 +236,7 @@ compute_session_key(struct stateob *st, u_int8_t *key, hash = get_hash(HASH_SHA1); break; default: - log_print("Unkown scheme %d in compute_session_key()", + log_print("Unknown scheme %d in compute_session_key()", ntohs(*((u_int16_t *)st->scheme))); return -1; } 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; } } diff --git a/sbin/photurisd/identity.c b/sbin/photurisd/identity.c index 6d3b3f723a7..936c5843c1d 100644 --- a/sbin/photurisd/identity.c +++ b/sbin/photurisd/identity.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identity.c,v 1.7 2002/06/10 19:58:20 espie Exp $ */ +/* $OpenBSD: identity.c,v 1.8 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: identity.c,v 1.7 2002/06/10 19:58:20 espie Exp $"; +static char rcsid[] = "$OpenBSD: identity.c,v 1.8 2002/12/06 02:17:42 deraadt Exp $"; #endif #define _IDENTITY_C_ @@ -150,7 +150,7 @@ init_identities(char *name, struct identity *root) type = ID_LOOKUP; p += strlen(IDENT_LOOKUP); } else { - log_print("Unkown tag %s in %s", p, file); + log_print("Unknown tag %s in %s", p, file); continue; } @@ -489,7 +489,7 @@ struct idxform *get_hash(enum hashes hashtype) for (i=0; i<sizeof(idxform)/sizeof(idxform[0]); i++) if (hashtype == idxform[i].type) return &idxform[i]; - log_print("Unkown hash type: %d in get_hash()", hashtype); + log_print("Unknown hash type: %d in get_hash()", hashtype); return NULL; } @@ -501,7 +501,7 @@ create_verification_key(struct stateob *st, u_int8_t *buffer, u_int16_t *size, int id = owner ? *(st->oSPIidentchoice) : *(st->uSPIidentchoice); if ((hash = get_hash_id(id)) == NULL) { - log_print("Unkown identity choice %d in create_verification_key", id); + log_print("Unknown identity choice %d in create_verification_key", id); return -1; } @@ -529,7 +529,7 @@ create_identity_verification(struct stateob *st, u_int8_t *buffer, struct idxform *hash; if ((hash = get_hash_id(*(st->oSPIidentchoice))) == NULL) { - log_print("Unkown identity choice %d in create_verification_key", + log_print("Unknown identity choice %d in create_verification_key", *(st->oSPIidentchoice)); return 0; } @@ -565,7 +565,7 @@ verify_identity_verification(struct stateob *st, u_int8_t *buffer, struct idxform *hash; if ((hash = get_hash_id(*(st->uSPIidentchoice))) == NULL) { - log_print("Unkown identity choice %d in create_verification_key", + log_print("Unknown identity choice %d in create_verification_key", *(st->uSPIidentchoice)); return 0; } diff --git a/sys/arch/hp300/dev/grf_tc.c b/sys/arch/hp300/dev/grf_tc.c index 188620c9447..13a5f3f7ac8 100644 --- a/sys/arch/hp300/dev/grf_tc.c +++ b/sys/arch/hp300/dev/grf_tc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf_tc.c,v 1.9 2002/03/14 01:26:30 millert Exp $ */ +/* $OpenBSD: grf_tc.c,v 1.10 2002/12/06 02:17:42 deraadt Exp $ */ /* $NetBSD: grf_tc.c,v 1.11 1997/03/31 07:34:18 scottr Exp $ */ /* @@ -260,7 +260,7 @@ topcat_common_attach(sc, grf, secid) break; #endif default: - printf("%s: unkown device 0x%x\n", + printf("%s: unknown device 0x%x\n", sc->sc_dev.dv_xname, secid); panic("topcat_common_attach"); } diff --git a/usr.sbin/bootpd/readfile.c b/usr.sbin/bootpd/readfile.c index 35c9639f350..ad8913d0bbf 100644 --- a/usr.sbin/bootpd/readfile.c +++ b/usr.sbin/bootpd/readfile.c @@ -21,7 +21,7 @@ SOFTWARE. ************************************************************************/ #ifndef lint -static char rcsid[] = "$Id: readfile.c,v 1.6 2002/05/27 19:49:58 deraadt Exp $"; +static char rcsid[] = "$Id: readfile.c,v 1.7 2002/12/06 02:17:42 deraadt Exp $"; #endif @@ -702,7 +702,7 @@ process_entry(host, src) case E_BAD_VALUE: msg = "bad value"; default: - msg = "unkown error"; + msg = "unknown error"; break; } /* switch */ report(LOG_ERR, "in entry named \"%s\", symbol \"%s\": %s", |