diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-12 22:43:20 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-12 22:43:20 +0000 |
commit | 60c92512459bf4e5a072387dfa4d03ae85035cba (patch) | |
tree | 08de18a783dbb518dfbe5832751a214aff7d0a7a /shell | |
parent | 7b23873aac83f79d2d5694963fd34a61ed0543c1 (diff) | |
download | busybox-w32-60c92512459bf4e5a072387dfa4d03ae85035cba.tar.gz busybox-w32-60c92512459bf4e5a072387dfa4d03ae85035cba.tar.bz2 busybox-w32-60c92512459bf4e5a072387dfa4d03ae85035cba.zip |
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
Diffstat (limited to 'shell')
-rw-r--r-- | shell/cmdedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) | |||
1205 | if (( fp = fopen ( fromfile, "r" ))) { | 1205 | if (( fp = fopen ( fromfile, "r" ))) { |
1206 | 1206 | ||
1207 | for ( hi = 0; hi < MAX_HISTORY; ) { | 1207 | for ( hi = 0; hi < MAX_HISTORY; ) { |
1208 | char * hl = bb_get_chomped_line_from_file(fp); | 1208 | char * hl = xmalloc_getline(fp); |
1209 | int l; | 1209 | int l; |
1210 | 1210 | ||
1211 | if(!hl) | 1211 | if(!hl) |