diff options
author | 2016-10-04 14:40:41 +0000 | |
---|---|---|
committer | 2016-10-04 14:40:41 +0000 | |
commit | 2bc623c2f9116c81eae280eb2e4f83ef6d42d068 (patch) | |
tree | 8151775d739a18b3e446b458aae7627734615cb0 | |
parent | no longer needed (diff) | |
download | wireguard-openbsd-2bc623c2f9116c81eae280eb2e4f83ef6d42d068.tar.xz wireguard-openbsd-2bc623c2f9116c81eae280eb2e4f83ef6d42d068.zip |
typo
-rw-r--r-- | usr.bin/signify/zsig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/signify/zsig.c b/usr.bin/signify/zsig.c index 55380653d37..38092bebe78 100644 --- a/usr.bin/signify/zsig.c +++ b/usr.bin/signify/zsig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zsig.c,v 1.13 2016/09/27 02:16:40 tedu Exp $ */ +/* $OpenBSD: zsig.c,v 1.14 2016/10/04 14:40:41 espie Exp $ */ /* * Copyright (c) 2016 Marc Espie <espie@openbsd.org> * @@ -94,7 +94,7 @@ readgz_header(struct gzheader *h, int fd) h->os = buf[9]; /* magic gzip header */ if (buf[0] != 0x1f || buf[1] != 0x8b || buf[2] != 8) - err(1, "invalud magic in gzheader"); + err(1, "invalid magic in gzheader"); /* XXX special code that only caters to our needs */ if (h->flg & ~ (FCOMMENT_FLAG | FNAME_FLAG)) err(1, "invalid flags in gzheader"); |