diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-10-10 03:31:21 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-10-10 03:31:21 +0000 |
commit | e19feba8b95710691242d67a07bdf43330339ee9 (patch) | |
tree | 243cc5b3b06675adaf7324131a570d39342b53f0 /usr.bin/quota/quota.c | |
parent | 745c452bc33b0361a84488a2a5fcac9e18b2e45d (diff) |
make err msg more like the others
Diffstat (limited to 'usr.bin/quota/quota.c')
-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); } |