diff options
| author | Jim Meyering <jim@meyering.net> | 1997-11-19 18:55:31 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1997-11-19 18:55:31 +0000 |
| commit | d92a618daf7dd48dd2cc5966165c307a02321e19 (patch) | |
| tree | b179a0df6d5874c044d053f6aeb02f9c054330de /lib/path-concat.c | |
| parent | (AUTOMAKE_OPTIONS): Use ansi2knr so *I* don't (diff) | |
| download | coreutils-d92a618daf7dd48dd2cc5966165c307a02321e19.tar.gz coreutils-d92a618daf7dd48dd2cc5966165c307a02321e19.zip | |
revert a mempcpy to memcpy
Diffstat (limited to 'lib/path-concat.c')
| -rw-r--r-- | lib/path-concat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/path-concat.c b/lib/path-concat.c index c7f041bbd..ff3978020 100644 --- a/lib/path-concat.c +++ b/lib/path-concat.c @@ -63,7 +63,7 @@ path_concat (dir, base, base_in_result) if (base_in_result) *base_in_result = p; - mempcpy (p, base, base_len + 1); + memcpy (p, base, base_len + 1); return p_concat; } |
