diff options
author | Denis Cheng <crquan@gmail.com> | 2007-08-13 11:01:58 +0800 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-10-10 08:55:20 +0100 |
commit | 5d35e31f43c4910d0b6afc5160728a84bbaf86f0 (patch) | |
tree | 81464e36e7b63e8244d689bb0bd85f641860b43e /fs/gfs2 | |
parent | 2d3ba1ea97d839e60d742ccf9a6de5bf039c0b53 (diff) | |
download | op-kernel-dev-5d35e31f43c4910d0b6afc5160728a84bbaf86f0.zip op-kernel-dev-5d35e31f43c4910d0b6afc5160728a84bbaf86f0.tar.gz |
[GFS2] better code for translating characters
the original code could work, but I think this code could work better.
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-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 25cfab9..6c820cb 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) snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto); snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table); - while ((table = strchr(sdp->sd_table_name, '/'))) + table = sdp->sd_table_name; + while ((table = strchr(table, '/'))) *table = '_'; out: |