From 4151630c58a995f30f7bee062be5b0c8f1d85f7c Mon Sep 17 00:00:00 2001
From: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
Date: Tue, 19 Mar 2013 13:09:08 +0100
Subject: [PATCH] mount/mount.ceph.c: remove unused variable

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
---
 src/mount/mount.ceph.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/mount/mount.ceph.c b/src/mount/mount.ceph.c
index e42b2733c9e..684792500ff 100755
--- a/src/mount/mount.ceph.c
+++ b/src/mount/mount.ceph.c
@@ -83,7 +83,6 @@ static char *parse_options(const char *data, int *filesys_flags)
 	char * next_keyword = NULL;
 	char * out = NULL;
 	int out_len = 0;
-	int word_len;
 	int skip;
 	int pos = 0;
 	char *name = NULL;
@@ -203,10 +202,6 @@ static char *parse_options(const char *data, int *filesys_flags)
 
 		/* Copy (possibly modified) option to out */
 		if (!skip) {
-			word_len = strlen(data);
-			if (value)
-				word_len += 1 + strlen(value);
-
 			if (pos)
 				pos = safe_cat(&out, &out_len, pos, ",");