diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-10-24 13:46:35 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-10-24 13:46:35 +0000 |
| commit | abdec3e35c5451782c26b6ed8ef92c520c96ce15 (patch) | |
| tree | 3dad90ce90994069455fe2e645ae322275a8bd91 | |
| parent | adc1189458e272bfb72da110f8867e750b79cf8c (diff) | |
Notes
| -rw-r--r-- | sbin/dump/main.c | 4 |
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); } |
