diff options
author | Dan McGee <dan@archlinux.org> | 2007-04-29 18:03:09 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-04-29 18:03:09 +0200 |
commit | a58e17a1d7a9901bb32277c9aed7edded3501767 (patch) | |
tree | 25209ab6fcfb551da7d55ee9a1e8e0c235511e2d /lib/libalpm/conflict.c | |
parent | ea327cab843397a5727a8a0dd560aab8e0975df6 (diff) | |
download | pacman-a58e17a1d7a9901bb32277c9aed7edded3501767.tar.gz pacman-a58e17a1d7a9901bb32277c9aed7edded3501767.tar.xz |
Remove STRNCPY macro from libalpm
Replaced calls to the STRNCPY macro with the actual strncpy function, and
pacman passes all pactests.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r-- | lib/libalpm/conflict.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index 472a4f69..3755fcd7 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -350,10 +350,10 @@ static alpm_list_t *add_fileconflict(alpm_list_t *conflicts, return(conflicts); } conflict->type = type; - STRNCPY(conflict->target, name1, PKG_NAME_LEN); - STRNCPY(conflict->file, filestr, CONFLICT_FILE_LEN); + strncpy(conflict->target, name1, PKG_NAME_LEN); + strncpy(conflict->file, filestr, CONFLICT_FILE_LEN); if(name2) { - STRNCPY(conflict->ctarget, name2, PKG_NAME_LEN); + strncpy(conflict->ctarget, name2, PKG_NAME_LEN); } else { conflict->ctarget[0] = '\0'; } |