summaryrefslogtreecommitdiff
path: root/bin/md5
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-08-01 10:07:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-08-01 10:07:12 +0000
commitb0988aff6e831e00a04849dc9333e2ee683a17a4 (patch)
tree86b59407ba9afc85ef896aac4fa1925d9792603c /bin/md5
parentf4d2a10d753e431f2bdbac67f916f123eac2a046 (diff)
warn not warnx
Diffstat (limited to 'bin/md5')
-rw-r--r--bin/md5/md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/md5/md5.c b/bin/md5/md5.c
index a81e92a5bab..bb96d726ef1 100644
--- a/bin/md5/md5.c
+++ b/bin/md5/md5.c
@@ -1,5 +1,5 @@
/*
- * $OpenBSD: md5.c,v 1.6 1997/07/17 05:45:01 millert Exp $
+ * $OpenBSD: md5.c,v 1.7 1997/08/01 10:07:11 deraadt Exp $
*
* Derived from:
* MDDRIVER.C - test driver for MD2, MD4 and MD5
@@ -115,7 +115,7 @@ main(argc, argv)
else {
p = MDFile(argv[i], buf);
if (!p)
- warnx(argv[i]);
+ warn(argv[i]);
else
(void)printf("%s (%s) = %s\n", MDType,
argv[i], p);