* archival/dpkg.c (create_list): Use chomp.

* archival/tar.c (append_file_list_to_list): Likewise.
This commit is contained in:
Matt Kraai
2002-01-02 19:01:41 +00:00
parent 0733e840bd
commit 39fcb5a750
2 changed files with 2 additions and 10 deletions

View File

@@ -516,14 +516,10 @@ void append_file_list_to_list(char *filename, char ***name_list, int *num_of_ent
{
FILE *src_stream;
char *line;
char *line_ptr;
src_stream = xfopen(filename, "r");
while ((line = get_line_from_file(src_stream)) != NULL) {
line_ptr = last_char_is(line, '\n');
if (line_ptr) {
*line_ptr = '\0';
}
chomp (line);
append_file_to_list(line, name_list, num_of_entries);
free(line);
}