aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-10-24 13:46:35 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-10-24 13:46:35 +0000
commitabdec3e35c5451782c26b6ed8ef92c520c96ce15 (patch)
tree3dad90ce90994069455fe2e645ae322275a8bd91 /sbin/dump
parentadc1189458e272bfb72da110f8867e750b79cf8c (diff)
Notes
Diffstat (limited to 'sbin/dump')
-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 8c7102186066..995dee0f5024 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);
}