diff options
author | Rob Landley <rob@landley.net> | 2006-09-05 13:48:21 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-05 13:48:21 +0000 |
commit | 02496aa69e7083aee179ac4d331daf90c838f727 (patch) | |
tree | ff58d03fff3e12b45cfdf2fdc2248cbf272b6967 | |
parent | 797b4d210d3a877f51be404aa1b147246dd3f079 (diff) | |
download | busybox-w32-02496aa69e7083aee179ac4d331daf90c838f727.tar.gz busybox-w32-02496aa69e7083aee179ac4d331daf90c838f727.tar.bz2 busybox-w32-02496aa69e7083aee179ac4d331daf90c838f727.zip |
The bb_ prefixes were removed from xasprintf() and xopen() a month ago (in
svn 15767).
-rw-r--r-- | archival/dpkg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index ac4683398..98f4f9725 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c | |||
@@ -1571,8 +1571,8 @@ static void unpack_package(deb_file_t *deb_file) | |||
1571 | unpack_ar_archive(archive_handle); | 1571 | unpack_ar_archive(archive_handle); |
1572 | 1572 | ||
1573 | /* Create the list file */ | 1573 | /* Create the list file */ |
1574 | list_filename = bb_xasprintf("/var/lib/dpkg/info/%s.list", package_name); | 1574 | list_filename = xasprintf("/var/lib/dpkg/info/%s.list", package_name); |
1575 | out_stream = bb_xfopen(list_filename, "w"); | 1575 | out_stream = xfopen(list_filename, "w"); |
1576 | while (archive_handle->sub_archive->passed) { | 1576 | while (archive_handle->sub_archive->passed) { |
1577 | /* the leading . has been stripped by data_extract_all_prefix already */ | 1577 | /* the leading . has been stripped by data_extract_all_prefix already */ |
1578 | fputs(archive_handle->sub_archive->passed->data, out_stream); | 1578 | fputs(archive_handle->sub_archive->passed->data, out_stream); |