1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-23 08:18:51 -05:00

be_files.c: Fix compilation bug since I removed unnecessary LOG_STR_LEN

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-06-09 13:37:47 -04:00
parent 35a794c2ed
commit cadd28072a

View File

@ -69,6 +69,7 @@ alpm_list_t *_alpm_db_test(pmdb_t *db)
{ {
struct dirent *ent; struct dirent *ent;
char path[PATH_MAX]; char path[PATH_MAX];
char text[PATH_MAX+1];
struct stat buf; struct stat buf;
alpm_list_t *ret = NULL; alpm_list_t *ret = NULL;
@ -79,18 +80,18 @@ alpm_list_t *_alpm_db_test(pmdb_t *db)
/* check for desc, depends, and files */ /* check for desc, depends, and files */
snprintf(path, PATH_MAX, "%s/%s/desc", db->path, ent->d_name); snprintf(path, PATH_MAX, "%s/%s/desc", db->path, ent->d_name);
if(stat(path, &buf)) { if(stat(path, &buf)) {
snprintf(path, LOG_STR_LEN, _("%s: description file is missing"), ent->d_name); snprintf(text, PATH_MAX, _("%s: description file is missing"), ent->d_name);
ret = alpm_list_add(ret, strdup(path)); ret = alpm_list_add(ret, strdup(text));
} }
snprintf(path, PATH_MAX, "%s/%s/depends", db->path, ent->d_name); snprintf(path, PATH_MAX, "%s/%s/depends", db->path, ent->d_name);
if(stat(path, &buf)) { if(stat(path, &buf)) {
snprintf(path, LOG_STR_LEN, _("%s: dependency file is missing"), ent->d_name); snprintf(text, PATH_MAX, _("%s: dependency file is missing"), ent->d_name);
ret = alpm_list_add(ret, strdup(path)); ret = alpm_list_add(ret, strdup(text));
} }
snprintf(path, PATH_MAX, "%s/%s/files", db->path, ent->d_name); snprintf(path, PATH_MAX, "%s/%s/files", db->path, ent->d_name);
if(stat(path, &buf)) { if(stat(path, &buf)) {
snprintf(path, LOG_STR_LEN, _("%s: file list is missing"), ent->d_name); snprintf(text, PATH_MAX, _("%s: file list is missing"), ent->d_name);
ret = alpm_list_add(ret, strdup(path)); ret = alpm_list_add(ret, strdup(text));
} }
} }
return(ret); return(ret);