summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2016-10-04 14:40:42 +0000
committerMarc Espie <espie@cvs.openbsd.org>2016-10-04 14:40:42 +0000
commit9f0305af9f20d3397e94efaa899494dfa96e895f (patch)
tree6d8c2c052e3f0c90d8d087e0f0b39f8e654e1434 /usr.bin
parent5a197d957842bb29180e8199f5f7ac876bc8a36a (diff)
typo
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/signify/zsig.c4
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");