summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobias <tobias@openbsd.org>2017-07-02 19:06:12 +0000
committertobias <tobias@openbsd.org>2017-07-02 19:06:12 +0000
commit9d9d15b9a81fddac347206e32594a8bc557bad49 (patch)
tree0dc11d0fa4a0abd29f5f81d022484129b3741fe4
parentrepair the tree, make sure y.tab.h is there before compiling yacc files. (diff)
downloadwireguard-openbsd-9d9d15b9a81fddac347206e32594a8bc557bad49.tar.xz
wireguard-openbsd-9d9d15b9a81fddac347206e32594a8bc557bad49.zip
Fixed a typo in error message.
ok jmc@
-rw-r--r--libexec/ld.so/ldd/ldd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/ldd/ldd.c b/libexec/ld.so/ldd/ldd.c
index 1795982dc06..5ebbe62cce3 100644
--- a/libexec/ld.so/ldd/ldd.c
+++ b/libexec/ld.so/ldd/ldd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ldd.c,v 1.20 2015/08/23 06:28:51 deraadt Exp $ */
+/* $OpenBSD: ldd.c,v 1.21 2017/07/02 19:06:12 tobias Exp $ */
/*
* Copyright (c) 2001 Artur Grabowski <art@openbsd.org>
* All rights reserved.
@@ -113,7 +113,7 @@ doit(char *name)
}
if (!S_ISREG(st.st_mode)) {
- warnx("%s: not an regular file", name);
+ warnx("%s: not a regular file", name);
close(fd);
return 1;
}