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.
This commit is contained in:
Julio Merino 2016-02-08 11:40:22 -05:00 committed by Julio Merino
parent 19ab22abec
commit e0025219b3
1 changed files with 0 additions and 9 deletions

View File

@ -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);