- Fixed char-sql server still reading the old lanconfig format rather than the new one.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6123 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-04-16 21:44:30 +00:00
parent 776ba2755c
commit b6558a82ae
2 changed files with 12 additions and 7 deletions

View File

@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/16 2006/04/16
* Fixed char-sql server still reading the old lanconfig format rather than
the new one. [Skotlex]
* Removed water_height.txt reading (since it is always done from the rsw * Removed water_height.txt reading (since it is always done from the rsw
now) [Skotlex] now) [Skotlex]
* Fixed a possible crash in grfio_find_file [Skotlex] * Fixed a possible crash in grfio_find_file [Skotlex]

View File

@ -3723,7 +3723,7 @@ int char_lan_config_read(const char *lancfgName) {
FILE *fp; FILE *fp;
int line_num = 0; int line_num = 0;
char line[1024], w1[64], w2[64], w3[64], w4[64], w5[64]; char line[1024], w1[64], w2[64], w3[64], w4[64];
if((fp = fopen(lancfgName, "r")) == NULL) { if((fp = fopen(lancfgName, "r")) == NULL) {
ShowWarning("LAN Support configuration file is not found: %s\n", lancfgName); ShowWarning("LAN Support configuration file is not found: %s\n", lancfgName);
@ -3739,7 +3739,7 @@ int char_lan_config_read(const char *lancfgName) {
continue; continue;
line[sizeof(line)-1] = '\0'; line[sizeof(line)-1] = '\0';
if(sscanf(line,"%[^:]: %[^/]/%[^:]:%[^:]:%[^\r\n]", w1, w2, w3, w4, w5) != 5) { if(sscanf(line,"%[^:]: %[^:]:%[^:]:%[^\r\n]", w1, w2, w3, w4) != 4) {
ShowWarning("Error syntax of configuration file %s in line %d.\n", lancfgName, line_num); ShowWarning("Error syntax of configuration file %s in line %d.\n", lancfgName, line_num);
continue; continue;
@ -3749,14 +3749,17 @@ int char_lan_config_read(const char *lancfgName) {
remove_control_chars((unsigned char *)w2); remove_control_chars((unsigned char *)w2);
remove_control_chars((unsigned char *)w3); remove_control_chars((unsigned char *)w3);
remove_control_chars((unsigned char *)w4); remove_control_chars((unsigned char *)w4);
remove_control_chars((unsigned char *)w5);
if(strcmpi(w1, "subnet") == 0) { if(strcmpi(w1, "subnet") == 0) {
subnet[subnet_count].subnet = inet_addr(w2); subnet[subnet_count].mask = inet_addr(w2);
subnet[subnet_count].mask = inet_addr(w3); subnet[subnet_count].char_ip = inet_addr(w3);
subnet[subnet_count].char_ip = inet_addr(w4); subnet[subnet_count].map_ip = inet_addr(w4);
subnet[subnet_count].map_ip = inet_addr(w5); subnet[subnet_count].subnet = subnet[subnet_count].char_ip&subnet[subnet_count].mask;
if (subnet[subnet_count].subnet != (subnet[subnet_count].map_ip&subnet[subnet_count].mask)) {
ShowError("%s: Configuration Error: The char server (%s) and map server (%s) belong to different subnetworks!\n", lancfgName, w3, w4);
continue;
}
subnet_count++; subnet_count++;
} }