aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 20:28:06 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 20:28:06 +0000
commit1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a (patch)
tree1bf7d7300ac410608a50b2c402966d492373ff24 /coreutils/sort.c
parentb816238d1a23646f04fe75c44fbb0a9da1eb1e76 (diff)
downloadbusybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.tar.gz
busybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.tar.bz2
busybox-w32-1fa12c6ebcb25e2924778bcbaae4bea1af7b7e6a.zip
rename bb_default_error_retval -> xfunc_error_retval
git-svn-id: svn://busybox.net/trunk/busybox@16304 69ca8d6d-28ef-0310-b511-8ec308f3f277
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);