aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kelly <mike@pair.com>2011-12-20 10:27:52 -0500
committerMiklos Szeredi <mszeredi@suse.cz>2011-12-21 10:05:08 +0100
commitcfcae008e3370706c353146773d3b8dff04abe1c (patch)
tree98aa3d108e5212f8b9f35924c82af0eebfd8f788
parent7ca565d80d9e7f19544393b180cc9e1dccc247e8 (diff)
downloadsshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar
sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar.gz
sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.tar.bz2
sshfs-cfcae008e3370706c353146773d3b8dff04abe1c.zip
fix typo in error message
-rw-r--r--sshfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshfs.c b/sshfs.c
index 749e134..8111f9c 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -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)