diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2021-08-23 07:21:28 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2021-08-30 05:44:57 +0000 |
| commit | 08fe2da3cef29ac837108be1ed644c52ccc04ed4 (patch) | |
| tree | b569dbbb05200b2f76966eb18d3042fae1c9463f | |
| parent | 5a67aaf1fa2cc4757d1cd62560563dcc2b88bdfc (diff) | |
nfsstat(1): Fix a typo in an error message
- s/priviledged/privileged/
(cherry picked from commit 72a92f91f466fdb73071ec28982b9f4d4cf9b672)
| -rw-r--r-- | usr.bin/nfsstat/nfsstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/nfsstat/nfsstat.c b/usr.bin/nfsstat/nfsstat.c index 72a2c08963cf..e2d747634bcc 100644 --- a/usr.bin/nfsstat/nfsstat.c +++ b/usr.bin/nfsstat/nfsstat.c @@ -182,7 +182,7 @@ main(int argc, char **argv) mntbuf->f_mntfromname, mntbuf->f_mntonname, buf); else if (errno == EPERM) - errx(1, "Only priviledged users" + errx(1, "Only privileged users" " can use the -m option"); } mntbuf++; |
