aboutsummaryrefslogtreecommitdiff
path: root/libbb/lineedit.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-12-09 10:03:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-12-09 10:03:28 +0000
commit9cb220be9dea5417c1ad0091bb7eeb1371891f89 (patch)
tree33e6f2cb5996d5cbf73b1d8fbdbfe955c847cbad /libbb/lineedit.c
parenta96425fe827c603b9c576c95f12b885af68eb219 (diff)
downloadbusybox-w32-9cb220be9dea5417c1ad0091bb7eeb1371891f89.tar.gz
busybox-w32-9cb220be9dea5417c1ad0091bb7eeb1371891f89.tar.bz2
busybox-w32-9cb220be9dea5417c1ad0091bb7eeb1371891f89.zip
lineedit: don't violate API if we do simple fgets
ash: cosmetic style fixes, no code changes
Diffstat (limited to 'libbb/lineedit.c')
-rw-r--r--libbb/lineedit.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c
index 1397409cc..a0f190fd4 100644
--- a/libbb/lineedit.c
+++ b/libbb/lineedit.c
@@ -1343,8 +1343,10 @@ int read_line_input(const char *prompt, char *command, int maxsize, line_input_t
1343 int len; 1343 int len;
1344 parse_and_put_prompt(prompt); 1344 parse_and_put_prompt(prompt);
1345 fflush(stdout); 1345 fflush(stdout);
1346 fgets(command, maxsize, stdin); 1346 if (fgets(command, maxsize, stdin) == NULL)
1347 len = strlen(command); 1347 len = -1; /* EOF or error */
1348 else
1349 len = strlen(command);
1348 DEINIT_S(); 1350 DEINIT_S();
1349 return len; 1351 return len;
1350 } 1352 }