summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-18 01:59:26 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-18 01:59:26 +0000
commitf37103daf4bab79d82330eda7e3128da1c7f5fc1 (patch)
tree6c4fed63b9834e6a3118ffefe03500c72f8915c1
parent6bad47558aa533c5ba589a4ac8e1dfde3028537e (diff)
downloadhercules-f37103daf4bab79d82330eda7e3128da1c7f5fc1.tar.gz
hercules-f37103daf4bab79d82330eda7e3128da1c7f5fc1.tar.bz2
hercules-f37103daf4bab79d82330eda7e3128da1c7f5fc1.tar.xz
hercules-f37103daf4bab79d82330eda7e3128da1c7f5fc1.zip
- Cleaned up irc.c (moved variable declarations before code commants >.>)
- Updated the VC project files by Joshuaali. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5316 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/irc.c24
-rw-r--r--vcproj-8/map-server_sql.vcproj8
-rw-r--r--vcproj-8/map-server_txt.vcproj4
4 files changed, 26 insertions, 12 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 3226156f1..597eb49b0 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -5,6 +5,8 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EV
GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/02/17
+ * Cleaned up irc.c, may it compile now on Windows? [Skotlex]
+ * Updated the VC project files by Joshuaali. [Skotlex]
* Fixed possible crash on pet egg select. [Skotlex]
* Massive update on the way splash/area (non-ground) skills work. [Skotlex]
- the new column 'splash' in skill_db is now used to determine the area of
diff --git a/src/map/irc.c b/src/map/irc.c
index 7f512963f..33e90669f 100644
--- a/src/map/irc.c
+++ b/src/map/irc.c
@@ -78,8 +78,9 @@ void irc_announce(char *buf)
void irc_announce_jobchange(struct map_session_data *sd)
{
- nullpo_retv(sd);
char send_string[256];
+
+ nullpo_retv(sd);
memset(send_string,'\0',256);
sprintf(send_string,"PRIVMSG %s :%s has changed into a %s.",irc_channel,sd->status.name,job_name(sd->status.class_));
@@ -88,13 +89,13 @@ void irc_announce_jobchange(struct map_session_data *sd)
void irc_announce_shop(struct map_session_data *sd, int flag)
{
- nullpo_retv(sd);
-
char send_string[256];
char mapname[16];
+ int maplen = 0;
+ nullpo_retv(sd);
+
memset(send_string,'\0',256);
memset(mapname,'\0',16);
- int maplen = 0;
if(flag){
strcpy(mapname, map[sd->bl.m].name);
@@ -111,16 +112,16 @@ void irc_announce_shop(struct map_session_data *sd, int flag)
void irc_announce_mvp(struct map_session_data *sd, struct mob_data *md)
{
+ char send_string[256];
+ char mapname[16];
+ int maplen = 0;
+
nullpo_retv(sd);
nullpo_retv(md);
- char send_string[256];
- char mapname[16];
memset(send_string,'\0',256);
memset(mapname,'\0',16);
mapname[16]='\0';
- int maplen = 0;
-
strcpy(mapname, map[md->bl.m].name);
maplen = strcspn(mapname,".");
mapname[maplen] = '\0';
@@ -175,10 +176,11 @@ void irc_send_sub(int fd, char transmit[4096])
void irc_send(char *buf)
{
+ char transmit[4096];
+
if(!irc_si || !session[irc_si->fd])
return;
- char transmit[4096];
memset(transmit,'\0',4096);
sprintf(transmit,buf);
@@ -196,6 +198,7 @@ void irc_parse_sub(int fd, char *incoming_string)
char *source_ident=NULL;
char *source_host=NULL;
char *state_mgr=NULL;
+
memset(source,'\0',256);
memset(command,'\0',256);
memset(target,'\0',256);
@@ -266,11 +269,12 @@ void do_final_irc(void)
void do_init_irc(void)
{
+ struct hostent *irc_hostname;
+
if(!use_irc)
return;
if (irc_ip_str[strlen(irc_ip_str)-1] == '\n')
irc_ip_str[strlen(irc_ip_str)-1] = '\0';
- struct hostent *irc_hostname;
irc_hostname=gethostbyname(irc_ip_str);
irc_ip_str[0]='\0';
sprintf(irc_ip_str, "%d.%d.%d.%d", (unsigned char)irc_hostname->h_addr[0], (unsigned char)irc_hostname->h_addr[1],
diff --git a/vcproj-8/map-server_sql.vcproj b/vcproj-8/map-server_sql.vcproj
index aa48237bd..6e671f3f3 100644
--- a/vcproj-8/map-server_sql.vcproj
+++ b/vcproj-8/map-server_sql.vcproj
@@ -42,7 +42,7 @@
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="..\src\common;..\src\zlib;..\src\mysql"
- PreprocessorDefinitions="WIN32;_WIN32;__WIN32;PCRE_SUPPORT;MAPREGSQL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FD_SETSIZE=4096;DB_MANUAL_CAST_TO_UNION;MAPREGSQL"
+ PreprocessorDefinitions="WIN32;_WIN32;__WIN32;PCRE_SUPPORT;MAPREGSQL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FD_SETSIZE=4096;DB_MANUAL_CAST_TO_UNION"
GeneratePreprocessedFile="0"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@@ -129,7 +129,7 @@
FavorSizeOrSpeed="1"
OmitFramePointers="true"
AdditionalIncludeDirectories="..\src\common;..\src\zlib;..\src\mysql"
- PreprocessorDefinitions="WIN32;_WIN32;__WIN32;PCRE_SUPPORT;MAPREGSQL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FD_SETSIZE=4096;DB_MANUAL_CAST_TO_UNION;MAPREGSQL"
+ PreprocessorDefinitions="WIN32;_WIN32;__WIN32;PCRE_SUPPORT;MAPREGSQL;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;FD_SETSIZE=4096;DB_MANUAL_CAST_TO_UNION"
RuntimeLibrary="0"
DefaultCharIsUnsigned="true"
UsePrecompiledHeader="0"
@@ -263,6 +263,10 @@
>
</File>
<File
+ RelativePath="..\src\map\irc.c"
+ >
+ </File>
+ <File
RelativePath="..\src\map\itemdb.c"
>
</File>
diff --git a/vcproj-8/map-server_txt.vcproj b/vcproj-8/map-server_txt.vcproj
index 462834721..2d15d3754 100644
--- a/vcproj-8/map-server_txt.vcproj
+++ b/vcproj-8/map-server_txt.vcproj
@@ -265,6 +265,10 @@
>
</File>
<File
+ RelativePath="..\src\map\irc.c"
+ >
+ </File>
+ <File
RelativePath="..\src\map\itemdb.c"
>
</File>