Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d35e31f authored by Denis Cheng's avatar Denis Cheng Committed by Steven Whitehouse
Browse files

[GFS2] better code for translating characters



the original code could work, but I think this code could work better.

Signed-off-by: default avatarDenis Cheng <crquan@gmail.com>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 2d3ba1ea
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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: