mount/mount.ceph.c: remove unused variable

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-03-19 13:09:08 +01:00
parent 45d5544c3f
commit 4151630c58

View File

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