diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-12-29 00:57:18 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-12-29 00:57:18 +0000 |
commit | cbb90fdbbca451fc6b07b7054adb39209e9432f4 (patch) | |
tree | d5162903b56f8e2a3e0d8c5ef94762158f724bae /sbin | |
parent | b7b2aac2b6305f8b01f0c47bc40b29a237356d16 (diff) | |
download | src-cbb90fdbbca451fc6b07b7054adb39209e9432f4.tar.gz src-cbb90fdbbca451fc6b07b7054adb39209e9432f4.zip |
rmt is /usr/sbin/rmt, not /etc/rmt which is a link to /usr/sbin/rmt
Notes
Notes:
svn path=/head/; revision=20996
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/dump/dump.8 | 2 | ||||
-rw-r--r-- | sbin/dump/pathnames.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dump/dump.8 b/sbin/dump/dump.8 index 3eb067b1e37f..7c6e5c201498 100644 --- a/sbin/dump/dump.8 +++ b/sbin/dump/dump.8 @@ -125,7 +125,7 @@ writes to the named file on the remote host using The default path name of the remote .Xr rmt 8 program is -.Pa /etc/rmt ; +.Pa /usr/sbin/rmt ; this can be overridden by the environment variable .Ev RMT . .It Cm d Ar density diff --git a/sbin/dump/pathnames.h b/sbin/dump/pathnames.h index a9c3f826c24e..1b4ac8b437e3 100644 --- a/sbin/dump/pathnames.h +++ b/sbin/dump/pathnames.h @@ -39,4 +39,4 @@ #define _PATH_DTMP "/etc/dtmp" #define _PATH_DUMPDATES "/etc/dumpdates" #define _PATH_LOCK "/tmp/dumplockXXXXXX" -#define _PATH_RMT "/etc/rmt" +#define _PATH_RMT "/usr/sbin/rmt" |