diff options
author | Denis Vlasenko | 2006-10-12 22:43:20 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-12 22:43:20 +0000 |
commit | 2d5ca60bfb66e0ba7340ab9b4696b872f00adf7c (patch) | |
tree | 08de18a783dbb518dfbe5832751a214aff7d0a7a /editors/patch.c | |
parent | 372686bde7b4c0abaf01123d8dda1dc6ab9a92e2 (diff) | |
download | busybox-2d5ca60bfb66e0ba7340ab9b4696b872f00adf7c.zip busybox-2d5ca60bfb66e0ba7340ab9b4696b872f00adf7c.tar.gz |
bb_get_[chomped]line_from_file wasn't descriptive enough.
Renaming...
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/patch.c b/editors/patch.c index 9336b27..545e70b 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -32,7 +32,7 @@ static unsigned int copy_lines(FILE *src_stream, FILE *dest_stream, const unsign while (src_stream && (i < lines_count)) { char *line; - line = bb_get_line_from_file(src_stream); + line = xmalloc_fgets(src_stream); if (line == NULL) { break; } @@ -96,7 +96,7 @@ int patch_main(int argc, char **argv) ret = 0; } - patch_line = bb_get_line_from_file(patch_file); + patch_line = xmalloc_fgets(patch_file); while (patch_line) { FILE *src_stream; FILE *dst_stream; @@ -115,14 +115,14 @@ int patch_main(int argc, char **argv) */ while (patch_line && strncmp(patch_line, "--- ", 4) != 0) { free(patch_line); - patch_line = bb_get_line_from_file(patch_file); + patch_line = xmalloc_fgets(patch_file); } /* Extract the filename used before the patch was generated */ original_filename = extract_filename(patch_line, patch_level); free(patch_line); - patch_line = bb_get_line_from_file(patch_file); + patch_line = xmalloc_fgets(patch_file); if (strncmp(patch_line, "+++ ", 4) != 0) { ret = 2; bb_error_msg("Invalid patch"); @@ -166,7 +166,7 @@ int patch_main(int argc, char **argv) printf("patching file %s\n", new_filename); /* Handle each hunk */ - patch_line = bb_get_line_from_file(patch_file); + patch_line = xmalloc_fgets(patch_file); while (patch_line) { unsigned int count; unsigned int src_beg_line; @@ -197,11 +197,11 @@ int patch_main(int argc, char **argv) } hunk_offset_start = src_cur_line; - while ((patch_line = bb_get_line_from_file(patch_file)) != NULL) { + while ((patch_line = xmalloc_fgets(patch_file)) != NULL) { if ((*patch_line == '-') || (*patch_line == ' ')) { char *src_line = NULL; if (src_stream) { - src_line = bb_get_line_from_file(src_stream); + src_line = xmalloc_fgets(src_stream); if (!src_line) { hunk_error++; break; |