aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorJulio Merino <jmmv@google.com>2016-02-08 11:40:22 -0500
committerJulio Merino <jmmv@meroh.net>2016-02-08 20:50:22 -0500
commite0025219b33de3cbf3152884b48412feb461c894 (patch)
tree52bd5308bcae9dd3012777ea11ff5d28a2cd3585 /sshfs.c
parent19ab22abec86e2167b8169bc7123fd5d1bd496f9 (diff)
downloadsshfs-e0025219b33de3cbf3152884b48412feb461c894.tar
sshfs-e0025219b33de3cbf3152884b48412feb461c894.tar.gz
sshfs-e0025219b33de3cbf3152884b48412feb461c894.tar.bz2
sshfs-e0025219b33de3cbf3152884b48412feb461c894.zip
Drop OSXFUSE_SSHFS_VERSION
Now that we are unifying osxfuse's sshfs into libfuse's version, there should not be two different version identifiers. Drop osxfuse's one.
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sshfs.c b/sshfs.c
index eab48c9..6948663 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -51,10 +51,6 @@
#include "cache.h"
-#ifdef __APPLE__
-# define OSXFUSE_SSHFS_VERSION "2.5.0"
-#endif
-
#ifndef MAP_LOCKED
#define MAP_LOCKED 0
#endif
@@ -3532,12 +3528,7 @@ static int sshfs_opt_proc(void *data, const char *arg, int key,
exit(1);
case KEY_VERSION:
-#ifdef __APPLE__
- printf("SSHFS version %s (OSXFUSE SSHFS %s)\n",
- PACKAGE_VERSION, OSXFUSE_SSHFS_VERSION);
-#else
printf("SSHFS version %s\n", PACKAGE_VERSION);
-#endif
#if FUSE_VERSION >= 25
fuse_opt_add_arg(outargs, "--version");
sshfs_fuse_main(outargs);