summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'sbin')
-rw-r--r--sbin/dump/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 8c71021..995dee0 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -539,8 +539,8 @@ rawname(cp)
*dp = '\0';
(void)strncpy(rawbuf, cp, MAXPATHLEN - 1);
*dp = '/';
- (void)strncat(rawbuf, "/r", strlen(rawbuf) - (MAXPATHLEN - 1));
- (void)strncat(rawbuf, dp + 1, strlen(rawbuf) - (MAXPATHLEN - 1));
+ (void)strncat(rawbuf, "/r", MAXPATHLEN-1 - strlen(rawbuf));
+ (void)strncat(rawbuf, dp + 1, MAXPATHLEN-1 - strlen(rawbuf));
return (rawbuf);
}
OpenPOWER on IntegriCloud