summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/osdep.c2
-rw-r--r--mbbsd/record.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/osdep.c b/mbbsd/osdep.c
index 4872083e..f4a9bd85 100644
--- a/mbbsd/osdep.c
+++ b/mbbsd/osdep.c
@@ -613,7 +613,7 @@ cpuload(char *str)
}
if (str) {
if (l[0] != -1)
- snprintf(str, sizeof(str), " %.2f %.2f %.2f", l[0], l[1], l[2]);
+ sprintf(str, " %.2f %.2f %.2f", l[0], l[1], l[2]);
else
strcpy(str, " (unknown) ");
}
diff --git a/mbbsd/record.c b/mbbsd/record.c
index 987b3e3d..79523c69 100644
--- a/mbbsd/record.c
+++ b/mbbsd/record.c
@@ -574,7 +574,7 @@ append_record_forward(char *fpath, fileheader_t * record, int size, const char *
int n;
for (n = strlen(fpath) - 1; fpath[n] != '/' && n > 0; n--);
- strlcpy(buf, fpath, n + 1);
+ strncpy(buf, fpath, n + 1);
if (n + sizeof(".forward") > sizeof(buf))
return -1;
strcpy(buf + n + 1, ".forward");