Fixed a typo in error message.
authortobias <tobias@openbsd.org>
Sun, 2 Jul 2017 19:06:12 +0000 (19:06 +0000)
committertobias <tobias@openbsd.org>
Sun, 2 Jul 2017 19:06:12 +0000 (19:06 +0000)
ok jmc@

libexec/ld.so/ldd/ldd.c

index 1795982..5ebbe62 100644 (file)
@@ -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;
        }