diff options
-rw-r--r-- | fs/gfs2/ops_fstype.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index 25cfab95eb9c..6c820cb23473 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -144,7 +144,8 @@ static int init_names(struct gfs2_sbd *sdp, int silent) | |||
144 | snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto); | 144 | snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto); |
145 | snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table); | 145 | snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table); |
146 | 146 | ||
147 | while ((table = strchr(sdp->sd_table_name, '/'))) | 147 | table = sdp->sd_table_name; |
148 | while ((table = strchr(table, '/'))) | ||
148 | *table = '_'; | 149 | *table = '_'; |
149 | 150 | ||
150 | out: | 151 | out: |