diff options
author | 2004-10-10 03:31:20 +0000 | |
---|---|---|
committer | 2004-10-10 03:31:20 +0000 | |
commit | 402e9e0f9902a5dbed08df3ca135c9ea0a11e1c3 (patch) | |
tree | d563bea71ebec7ca5c5628c43a5cd4ec198d7121 /usr.bin | |
parent | use err/warn (diff) | |
download | wireguard-openbsd-402e9e0f9902a5dbed08df3ca135c9ea0a11e1c3.tar.xz wireguard-openbsd-402e9e0f9902a5dbed08df3ca135c9ea0a11e1c3.zip |
make err msg more like the others
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/quota/quota.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/quota/quota.c b/usr.bin/quota/quota.c index e284ae6a727..e6f23b8200b 100644 --- a/usr.bin/quota/quota.c +++ b/usr.bin/quota/quota.c @@ -1,4 +1,4 @@ -/* $OpenBSD: quota.c,v 1.23 2003/06/10 22:20:49 deraadt Exp $ */ +/* $OpenBSD: quota.c,v 1.24 2004/10/10 03:31:20 mickey Exp $ */ /* * Copyright (c) 1980, 1990, 1993 @@ -41,7 +41,7 @@ static const char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";*/ static const char rcsid[] = -"$OpenBSD: quota.c,v 1.23 2003/06/10 22:20:49 deraadt Exp $"; +"$OpenBSD: quota.c,v 1.24 2004/10/10 03:31:20 mickey Exp $"; #endif /* not lint */ /* @@ -565,7 +565,7 @@ getufsquota(struct statfs *fst, struct fstab *fs, struct quotause *qup, case sizeof(struct dqblk): /* OK */ break; default: /* ERROR */ - warn("read error `%s'", qfpathname); + warn("%s", qfpathname); close(fd); return (0); } |