svn commit: trunk/busybox/archival
landley at busybox.net
landley at busybox.net
Tue Sep 5 06:48:21 PDT 2006
Author: landley
Date: 2006-09-05 06:48:21 -0700 (Tue, 05 Sep 2006)
New Revision: 16054
Log:
The bb_ prefixes were removed from xasprintf() and xopen() a month ago (in
svn 15767).
Modified:
trunk/busybox/archival/dpkg.c
Changeset:
Modified: trunk/busybox/archival/dpkg.c
===================================================================
--- trunk/busybox/archival/dpkg.c 2006-09-05 09:45:30 UTC (rev 16053)
+++ trunk/busybox/archival/dpkg.c 2006-09-05 13:48:21 UTC (rev 16054)
@@ -1571,8 +1571,8 @@
unpack_ar_archive(archive_handle);
/* Create the list file */
- list_filename = bb_xasprintf("/var/lib/dpkg/info/%s.list", package_name);
- out_stream = bb_xfopen(list_filename, "w");
+ list_filename = xasprintf("/var/lib/dpkg/info/%s.list", package_name);
+ out_stream = xfopen(list_filename, "w");
while (archive_handle->sub_archive->passed) {
/* the leading . has been stripped by data_extract_all_prefix already */
fputs(archive_handle->sub_archive->passed->data, out_stream);
More information about the busybox-cvs
mailing list