diff options
author | Zhao Hongjiang <zhaohongjiang@huawei.com> | 2013-06-20 06:59:51 -0400 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2013-06-25 13:53:06 -0400 |
commit | ad917e7f821855a2f223131bb6c90ca6c9240bf3 (patch) | |
tree | ab187928712bbf3a394658a3d6b393cb0553bc27 /fs/dlm | |
parent | 06452eb0538827d2158945d20e3d33e359884437 (diff) |
dlm: config: using strlcpy instead of strncpy
for NUL terminated string, need alway set '\0' in the end.
Signed-off-by: Zhao Hongjiang <zhaohongjiang@huawei.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/dlm/config.c b/fs/dlm/config.c index 7d58d5b112b5..76feb4b60fa6 100644 --- a/fs/dlm/config.c +++ b/fs/dlm/config.c | |||
@@ -138,8 +138,9 @@ static ssize_t cluster_cluster_name_read(struct dlm_cluster *cl, char *buf) | |||
138 | static ssize_t cluster_cluster_name_write(struct dlm_cluster *cl, | 138 | static ssize_t cluster_cluster_name_write(struct dlm_cluster *cl, |
139 | const char *buf, size_t len) | 139 | const char *buf, size_t len) |
140 | { | 140 | { |
141 | strncpy(dlm_config.ci_cluster_name, buf, DLM_LOCKSPACE_LEN); | 141 | strlcpy(dlm_config.ci_cluster_name, buf, |
142 | strncpy(cl->cl_cluster_name, buf, DLM_LOCKSPACE_LEN); | 142 | sizeof(dlm_config.ci_cluster_name)); |
143 | strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name)); | ||
143 | return len; | 144 | return len; |
144 | } | 145 | } |
145 | 146 | ||