X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Fwritemany.c;h=72d1ac6a71a7f37da696087ffef52989d46d7ed9;hb=1d18f992d4cd1e8c9300987587974524b113847a;hp=9e707413c0dea8e0741b78a4bf6dc9a8a586735d;hpb=e3a7c58aebafce40323db54bf6056029e5af4a70;p=fs%2Flustre-release.git diff --git a/lustre/tests/writemany.c b/lustre/tests/writemany.c index 9e70741..72d1ac6 100644 --- a/lustre/tests/writemany.c +++ b/lustre/tests/writemany.c @@ -188,7 +188,8 @@ int run_one_child(char *file, int thread, int seconds) break; } - sprintf(filename, "%s-%d-%ld", file, thread, nfiles); + snprintf(filename, sizeof(filename), "%s-%d-%ld", + file, thread, nfiles); fd = open(filename, O_RDWR | O_CREAT, 0666); if (fd < 0) { @@ -247,7 +248,7 @@ int main(int argc, char *argv[]) char *directory; int i = 1, rc = 0; - sprintf(cmdname, "%s", argv[0]); + snprintf(cmdname, sizeof(cmdname), "%s", argv[0]); while((i < argc) && (argv[i][0] == '-')) { switch (argv[i][1]) { @@ -291,7 +292,7 @@ int main(int argc, char *argv[]) } if (rc == 0) { /* children */ - sprintf(cmdname, "%s-%d", argv[0], i); + snprintf(cmdname, sizeof(cmdname), "%s-%d", argv[0], i); return (run_one_child(directory, i, duration)); } else { /* parent */