aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-02-08 16:47:54 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-02-08 16:47:54 +0000
commitda058cf9da38115651e5dc313ba537e2a861b836 (patch)
tree8fe4284a0d9bdd65ac9f7c4e33ebffe63d8230ab
parenta464d3ec2c93e65da4ae752ac126c30e9897d63b (diff)
downloadsshfs-da058cf9da38115651e5dc313ba537e2a861b836.tar
sshfs-da058cf9da38115651e5dc313ba537e2a861b836.tar.gz
sshfs-da058cf9da38115651e5dc313ba537e2a861b836.tar.bz2
sshfs-da058cf9da38115651e5dc313ba537e2a861b836.zip
fix
-rw-r--r--Makefile.am2
-rw-r--r--sshfs.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index fe3b4a3..8b4384a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
bin_PROGRAMS = sshfs
-sshfs_SOURCES = sshfs.c cache.c opts.c
+sshfs_SOURCES = sshfs.c cache.c opts.c cache.h opts.h
sshfs_CPPFLAGS = -DFUSE_USE_VERSION=22
diff --git a/sshfs.c b/sshfs.c
index ae65107..0aa325c 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -1159,7 +1159,7 @@ static void usage(const char *progname)
"\n"
"SSHFS Options:\n"
" -o directport=PORT directly connect to port bypassing ssh\n"
- " -o SSHOPT=VAL ssh options (see man ssh_config(5))\n"
+ " -o SSHOPT=VAL ssh options (see man ssh_config)\n"
"\n", progname);
fuse_main(2, (char **) fusehelp, &sshfs_oper.oper);
exit(1);