From b4d6bac9a4d623a9b32188458b26ae424d374bb3 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 25 May 2007 15:21:53 +0000 Subject: Corrected some weird fgets() statements, plus reformatted them git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10616 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/ladmin/ladmin.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/ladmin') diff --git a/src/ladmin/ladmin.c b/src/ladmin/ladmin.c index 9027d7e07..7d8815eb2 100644 --- a/src/ladmin/ladmin.c +++ b/src/ladmin/ladmin.c @@ -3053,8 +3053,7 @@ int prompt(void) // get command and parameter memset(buf, '\0', sizeof(buf)); fflush(stdin); - fgets(buf, 1023, stdin); - buf[1023] = '\0'; + fgets(buf, sizeof(buf), stdin); ShowMessage("\033[0m"); fflush(stdout); @@ -4256,11 +4255,11 @@ int ladmin_config_read(const char *cfgName) } else { ShowMessage("\033[0m---Start reading of Ladmin configuration file (%s)\n", cfgName); } - while(fgets(line, sizeof(line)-1, fp)) { + while(fgets(line, sizeof(line), fp)) + { if (line[0] == '/' && line[1] == '/') continue; - line[sizeof(line)-1] = '\0'; if (sscanf(line, "%[^:]: %[^\r\n]", w1, w2) == 2) { remove_control_chars(w1); remove_control_chars(w2); -- cgit v1.2.3-70-g09d2