VMiklos: add STRNCPY macro from alpm to pacman

This commit is contained in:
Judd Vinet 2005-12-20 23:59:56 +00:00
parent 953e7e5d3e
commit a074ddb85b
2 changed files with 6 additions and 1 deletions

View File

@ -451,7 +451,7 @@ int downloadfiles_forreal(list_t *servers, const char *localpath,
if(!strcmp(server->protocol, "file")) {
char out[56];
printf(" %s [", sync_fnm);
strncpy(out, server->path, 33);
STRNCPY(out, server->path, 33);
printf("%s", out);
for(j = strlen(out); j < maxcols-64; j++) {
printf(" ");

View File

@ -28,6 +28,11 @@
#define FREE(p) do { if (p) { free(p); (p) = NULL; }} while(0)
#define STRNCPY(s1, s2, len) do { \
strncpy(s1, s2, (len)-1); \
s1[(len)-1] = 0; \
} while(0)
int makepath(char *path);
int rmrf(char *path);
void indentprint(char *str, int indent);