diff options
author | Mike Kelly <mike@pair.com> | 2011-12-20 10:27:52 -0500 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2011-12-21 10:05:08 +0100 |
commit | cfcae008e3370706c353146773d3b8dff04abe1c (patch) | |
tree | 98aa3d108e5212f8b9f35924c82af0eebfd8f788 | |
parent | 7ca565d80d9e7f19544393b180cc9e1dccc247e8 (diff) | |
download | sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar.gz sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar.bz2 sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.zip |
fix typo in error message
-rw-r--r-- | sshfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3689,7 +3689,7 @@ int main(int argc, char *argv[]) sshfs.r_uid_map = NULL; sshfs.r_gid_map = NULL; if (!sshfs.uid_file && !sshfs.gid_file) { - fprintf(stderr, "need a uid_file or gid_file with idmap=file\n"); + fprintf(stderr, "need a uidfile or gidfile with idmap=file\n"); exit(1); } if (sshfs.uid_file) |