diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-15 13:27:07 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-15 13:27:07 +0000 |
commit | 44bc5da8729af5dfec20986a6778702cd3d8228f (patch) | |
tree | b6c2c1bcf68c62f1922e14bdfcb0483ff2878f58 /lib/libc/gen/login_cap.c | |
parent | dcc6c2e0462398432458a2fa1896530a191ad092 (diff) |
more writeable -> writable by torh
Diffstat (limited to 'lib/libc/gen/login_cap.c')
-rw-r--r-- | lib/libc/gen/login_cap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/login_cap.c b/lib/libc/gen/login_cap.c index af0fc0167de..3ae8ab56a57 100644 --- a/lib/libc/gen/login_cap.c +++ b/lib/libc/gen/login_cap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: login_cap.c,v 1.14 2002/11/22 19:47:03 deraadt Exp $ */ +/* $OpenBSD: login_cap.c,v 1.15 2002/12/15 13:27:06 henning Exp $ */ /*- * Copyright (c) 1995,1997 Berkeley Software Design, Inc. All rights reserved. @@ -947,7 +947,7 @@ secure_path(char *path) syslog(LOG_ERR, "%s: not owned by root", path); return (-1); } else if (sb.st_mode & (S_IWGRP | S_IWOTH)) { - syslog(LOG_ERR, "%s: writeable by non-root", path); + syslog(LOG_ERR, "%s: writable by non-root", path); return (-1); } return (0); |