diff options
author | Justus Winter <justus@gnupg.org> | 2017-08-05 19:26:25 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-08-05 20:55:06 +0200 |
commit | a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d (patch) | |
tree | 44ea9ba66247feaf008b9220314fc8f07422570c /libps/spec.c | |
parent | 66553fd7a7bcf7c260b45f2e7ad54e98d33f8080 (diff) | |
download | hurd-a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d.tar.gz hurd-a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d.tar.bz2 hurd-a2f64c2462282bb3cf1ad24044c97bb7d6b85e0d.zip |
Replace bcopy with memcpy or memmove as appropriate.
* boot/boot.c: Replace bcopy with memcpy or memmove as appropriate.
* exec/hashexec.c: Likewise.
* libps/proclist.c: Likewise, but also fix the amount of data copied.
* libps/procstat.c: Likewise.
* libps/spec.c: Likewise.
* libshouldbeinlibc/cacheq.c: Likewise.
* libshouldbeinlibc/idvec.c: Likewise.
* libshouldbeinlibc/timefmt.c: Likewise.
Diffstat (limited to 'libps/spec.c')
-rw-r--r-- | libps/spec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libps/spec.c b/libps/spec.c index 4a6e226f..5e540f87 100644 --- a/libps/spec.c +++ b/libps/spec.c @@ -1023,7 +1023,7 @@ specs_add_alias (struct ps_fmt_specs *specs, exp->name = malloc (name_len + 1); if (! exp->name) return 0; - bcopy ((char *)alias->name, (char *)exp->name, name_len); + memcpy ((char *)exp->name, (char *)alias->name, name_len); ((char *)exp->name)[name_len] = '\0'; /* Copy the rest of the fields from ALIAS, but defaulting to SRC. */ |