From 60c92512459bf4e5a072387dfa4d03ae85035cba Mon Sep 17 00:00:00 2001 From: vda Date: Thu, 12 Oct 2006 22:43:20 +0000 Subject: bb_get_[chomped]line_from_file wasn't descriptive enough. Renaming... git-svn-id: svn://busybox.net/trunk/busybox@16375 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- shell/cmdedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 7b4d46511..3f44ea013 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c @@ -1205,7 +1205,7 @@ void load_history ( const char *fromfile ) if (( fp = fopen ( fromfile, "r" ))) { for ( hi = 0; hi < MAX_HISTORY; ) { - char * hl = bb_get_chomped_line_from_file(fp); + char * hl = xmalloc_getline(fp); int l; if(!hl) -- cgit v1.2.3-55-g6feb