aboutsummaryrefslogtreecommitdiff
path: root/findutils/xargs.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-22 01:48:07 +0000
committerMatt Kraai <kraai@debian.org>2000-12-22 01:48:07 +0000
commita9819b290848e0a760f3805d5937fa050235d707 (patch)
treeb8cb8d939032c0806d62161b01e5836cb808dc3f /findutils/xargs.c
parente9f07fb6e83b75a50760599a5d31f494841eddf7 (diff)
downloadbusybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.gz
busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.tar.bz2
busybox-w32-a9819b290848e0a760f3805d5937fa050235d707.zip
Use busybox error handling functions wherever possible.
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r--findutils/xargs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index c5f7b208c..ddfbe9230 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -81,10 +81,8 @@ int xargs_main(int argc, char **argv)
81 strcat(execstr, cmd_to_be_executed); 81 strcat(execstr, cmd_to_be_executed);
82 strcat(execstr, file_to_act_on); 82 strcat(execstr, file_to_act_on);
83 cmd_output = popen(execstr, "r"); 83 cmd_output = popen(execstr, "r");
84 if (cmd_output == NULL) { 84 if (cmd_output == NULL)
85 perror("popen"); 85 perror_msg_and_die("popen");
86 exit(1);
87 }
88 86
89 /* harvest the output */ 87 /* harvest the output */
90 while ((output_line = get_line_from_file(cmd_output)) != NULL) { 88 while ((output_line = get_line_from_file(cmd_output)) != NULL) {