From a58e17a1d7a9901bb32277c9aed7edded3501767 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 29 Apr 2007 12:03:09 -0400 Subject: 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 --- lib/libalpm/util.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/libalpm/util.h') diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index c4131795..0584b73b 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -34,11 +34,6 @@ #define ASSERT(cond, action) do { if(!(cond)) { action; } } while(0) -#define STRNCPY(s1, s2, len) do { \ - strncpy(s1, s2, (len)-1); \ - s1[(len)-1] = 0; \ -} while(0) - #define ARCHIVE_EXTRACT_FLAGS ARCHIVE_EXTRACT_OWNER | ARCHIVE_EXTRACT_PERM | ARCHIVE_EXTRACT_TIME /* define _() as shortcut for gettext() */ @@ -62,6 +57,7 @@ int _alpm_unpack(const char *archive, const char *prefix, const char *fn); int _alpm_rmrf(const char *path); int _alpm_logaction(unsigned short usesyslog, FILE *f, const char *str); int _alpm_ldconfig(const char *root); +/* TODO wtf? this can't be right */ #ifdef _ALPM_TRANS_H int _alpm_runscriptlet(const char *root, const char *installfn, const char *script, const char *ver, -- cgit v1.2.3-54-g00ecf