diff options
author | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-15 16:19:07 +0000 |
---|---|---|
committer | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-15 16:19:07 +0000 |
commit | 4e003aea5ffaa764bf0e40a63ea314c56903fda0 (patch) | |
tree | 7fe77da393c7b3d1884ab6e127fa0a0eea0138e7 /src/common | |
parent | b82433d5426042687173da4339f83379fb9f7106 (diff) | |
download | hercules-4e003aea5ffaa764bf0e40a63ea314c56903fda0.tar.gz hercules-4e003aea5ffaa764bf0e40a63ea314c56903fda0.tar.bz2 hercules-4e003aea5ffaa764bf0e40a63ea314c56903fda0.tar.xz hercules-4e003aea5ffaa764bf0e40a63ea314c56903fda0.zip |
More compile cleanups
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@574 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/GNUmakefile | 14 | ||||
-rw-r--r-- | src/common/socket.c | 10 |
2 files changed, 0 insertions, 24 deletions
diff --git a/src/common/GNUmakefile b/src/common/GNUmakefile deleted file mode 100644 index b15d4d481..000000000 --- a/src/common/GNUmakefile +++ /dev/null @@ -1,14 +0,0 @@ -txt sql all: core.o socket.o timer.o grfio.o db.o lock.o nullpo.o malloc.o showmsg.o - -core.o: core.c core.h showmsg.h -socket.o: socket.c socket.h mmo.h showmsg.h -timer.o: timer.c timer.h showmsg.h -grfio.o: grfio.c grfio.h showmsg.h -db.o: db.c db.h showmsg.h -lock.o: lock.h showmsg.h -nullpo.o: nullpo.c nullpo.h showmsg.h -malloc.o: malloc.c malloc.h showmsg.h -showmsg.o: showmsg.c showmsg.h - -clean: - rm -f *.o diff --git a/src/common/socket.c b/src/common/socket.c index 611d73902..497564298 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -105,16 +105,6 @@ static int recv_to_fifo(int fd) session[fd]->rdata_size+=len; } else if(len<=0){ // value of connection is not necessary the same -// if (fd == 4) // Removed [Yor] -// printf("Char-Server Has Disconnected.\n"); -// else if (fd == 5) // Removed [Yor] -// printf("Attempt To Log In Successful.\n"); -// else if (fd == 7) // Removed [Yor] -// printf("Char-Server Has Disconnected.\n"); -// else if (fd == 8) // Removed [Valaris] -// printf("%s has logged off your server.\n",RFIFOP(fd,6)); // Removed [Valaris] - -// else if (fd != 8) // [Valaris] // printf("set eof : connection #%d\n", fd); session[fd]->eof=1; } |