Commit 00377d8e authored by Jean Delvare's avatar Jean Delvare Committed by Steven Whitehouse

[GFS2] Prefer strlcpy() over snprintf()

strlcpy is faster than snprintf when you don't use the returned value.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent ad99f777
...@@ -142,8 +142,8 @@ static int init_names(struct gfs2_sbd *sdp, int silent) ...@@ -142,8 +142,8 @@ static int init_names(struct gfs2_sbd *sdp, int silent)
if (!table[0]) if (!table[0])
table = sdp->sd_vfs->s_id; table = sdp->sd_vfs->s_id;
snprintf(sdp->sd_proto_name, GFS2_FSNAME_LEN, "%s", proto); strlcpy(sdp->sd_proto_name, proto, GFS2_FSNAME_LEN);
snprintf(sdp->sd_table_name, GFS2_FSNAME_LEN, "%s", table); strlcpy(sdp->sd_table_name, table, GFS2_FSNAME_LEN);
table = sdp->sd_table_name; table = sdp->sd_table_name;
while ((table = strchr(table, '/'))) while ((table = strchr(table, '/')))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment