From 635eede32fb23809eba5b51f580b43ee3423f06f Mon Sep 17 00:00:00 2001
From: Donald Buczek <buczek@molgen.mpg.de>
Date: Mon, 19 Nov 2018 11:40:13 +0100
Subject: [PATCH] mxmount: Remove unused variables

DEFAULT_MOUNT_FS,FULLHOST,NONE,NULL are never used. Remove unused
variables.

Note, that SHORTHOST is currently used by /etc/mxmounts.
---
 mxmount/mxmount | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/mxmount/mxmount b/mxmount/mxmount
index 9ea675c..0a4c366 100755
--- a/mxmount/mxmount
+++ b/mxmount/mxmount
@@ -27,16 +27,11 @@ $fullhostname = hostname();
 
 %D = ();
 %V = (
-    DEFAULT_MOUNT_FS       => '',
     DEFAULT_MOUNT_OPTIONS  => '',
     DEFAULT_EXPORT_OPTIONS => '',
     DEFAULT_MOUNT_PREFIX   => '/',
 
     SHORTHOST => $hostname,
-    FULLHOST  => $fullhostname,
-
-    NONE => '',
-    NULL => ''
 );
 
 @lines   = read_file($configfile);