summaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-03 20:28:06 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-03 20:28:06 +0000
commit40920825d59874cf285390434486e88c8498d2d8 (patch)
tree1bf7d7300ac410608a50b2c402966d492373ff24 /coreutils/sort.c
parentb6332248ca4d781b4142fb9b6fe7e97a4a9ad59d (diff)
downloadbusybox-w32-40920825d59874cf285390434486e88c8498d2d8.tar.gz
busybox-w32-40920825d59874cf285390434486e88c8498d2d8.tar.bz2
busybox-w32-40920825d59874cf285390434486e88c8498d2d8.zip
rename bb_default_error_retval -> xfunc_error_retval
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r--coreutils/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c
index 7dfe1764c..c450cfbe6 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -225,7 +225,7 @@ int sort_main(int argc, char **argv)
225 char *line,**lines=NULL,*optlist="ngMucszbrdfimS:T:o:k:t:"; 225 char *line,**lines=NULL,*optlist="ngMucszbrdfimS:T:o:k:t:";
226 int c; 226 int c;
227 227
228 bb_default_error_retval = 2; 228 xfunc_error_retval = 2;
229 /* Parse command line options */ 229 /* Parse command line options */
230 while((c=getopt(argc,argv,optlist))>0) { 230 while((c=getopt(argc,argv,optlist))>0) {
231 line=strchr(optlist,c); 231 line=strchr(optlist,c);