diff options
author | David Malone <dwmalone@FreeBSD.org> | 2002-07-17 16:22:24 +0000 |
---|---|---|
committer | David Malone <dwmalone@FreeBSD.org> | 2002-07-17 16:22:24 +0000 |
commit | 999feccf15fbaef20c74a6c55c6ba47d5651ee4e (patch) | |
tree | 2d11edc9a8018c72d78a3aa13cfd4a55c56ee62f /usr.sbin | |
parent | 8306a37bbba8c566f7b161d5b2cd80cc4462f412 (diff) | |
download | src-999feccf15fbaef20c74a6c55c6ba47d5651ee4e.tar.gz src-999feccf15fbaef20c74a6c55c6ba47d5651ee4e.zip |
Fix a spelling mistake.
PR: 40695
Submitted by: Maxim Maximov <mcsi@agava.com>
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=100252
Diffstat (limited to 'usr.sbin')
-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 6812c45ba319..fcc10e9c7e16 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); } |