diff options
author | dwmalone <dwmalone@FreeBSD.org> | 2002-07-17 16:22:24 +0000 |
---|---|---|
committer | dwmalone <dwmalone@FreeBSD.org> | 2002-07-17 16:22:24 +0000 |
commit | 1b350fbe369fc36608c4386e9d0e098fa4eabe24 (patch) | |
tree | 2d11edc9a8018c72d78a3aa13cfd4a55c56ee62f /usr.sbin/chown | |
parent | a6f49f3bf1283c8b7de0904a2082d0c3921cd5e0 (diff) | |
download | FreeBSD-src-1b350fbe369fc36608c4386e9d0e098fa4eabe24.zip FreeBSD-src-1b350fbe369fc36608c4386e9d0e098fa4eabe24.tar.gz |
Fix a spelling mistake.
PR: 40695
Submitted by: Maxim Maximov <mcsi@agava.com>
MFC after: 1 week
Diffstat (limited to 'usr.sbin/chown')
-rw-r--r-- | usr.sbin/chown/chown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c index 6812c45..fcc10e9 100644 --- a/usr.sbin/chown/chown.c +++ b/usr.sbin/chown/chown.c @@ -142,7 +142,7 @@ main(int argc, char **argv) } #ifdef SUPPORT_DOT else if ((cp = strchr(*argv, '.')) != NULL) { - warnx("seperation of user and group with a period is deprecated"); + warnx("separation of user and group with a period is deprecated"); *cp++ = '\0'; a_gid(cp); } |