Corrected some weird fgets() statements, plus reformatted them

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10616 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage
2007-05-25 15:21:53 +00:00
parent a2ee6dd7ec
commit dfdb5368c7
46 changed files with 229 additions and 167 deletions

View File

@@ -1,9 +1,6 @@
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
// original code from athena
// SQL conversion by Jioh L. Jung
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -204,7 +201,8 @@ static int inter_config_read(const char *cfgName)
ShowInfo("reading file %s...\n",cfgName);
while(fgets(line, 1020, fp)){
while(fgets(line, sizeof(line), fp))
{
i=sscanf(line,"%[^:]: %[^\r\n]",w1,w2);
if(i!=2)
continue;