summaryrefslogtreecommitdiff
path: root/usr.bin/finger/util.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-15 18:16:07 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-15 18:16:07 +0000
commit524ed6375169a030500fbbcbe524253c7eb45333 (patch)
treee31647081e5ed35a8c0386847bd002fa50e9f6ac /usr.bin/finger/util.c
parent8fa9d8a619b3f735a69094400d9184e62ca7badb (diff)
typo
Diffstat (limited to 'usr.bin/finger/util.c')
-rw-r--r--usr.bin/finger/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/finger/util.c b/usr.bin/finger/util.c
index 86b1d491acf..0265e23a915 100644
--- a/usr.bin/finger/util.c
+++ b/usr.bin/finger/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.14 2001/01/15 16:48:07 deraadt Exp $ */
+/* $OpenBSD: util.c,v 1.15 2001/01/15 18:16:06 deraadt Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@@ -39,7 +39,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)util.c 5.14 (Berkeley) 1/17/91";*/
-static char rcsid[] = "$OpenBSD: util.c,v 1.14 2001/01/15 16:48:07 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: util.c,v 1.15 2001/01/15 18:16:06 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -87,7 +87,7 @@ estrdup(char *s)
{
char *p = strdup(s);
if (!p)
- err(1, "stdup");
+ err(1, "strdup");
return (p);
}