git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5057 fc73d0e0-1445-4013-8a0c-d673dee63da5

This commit is contained in:
Spoike 2017-02-11 17:17:54 +00:00
parent 7bfb3b56fa
commit 2d1b554813
2 changed files with 2 additions and 1 deletions

View File

@ -733,6 +733,7 @@ void Log_Logfile_f (void);
void Log_Init(void);
void Log_ShutDown(void);
void IPLog_Add(const char *ip, const char *name); //for associating player ip addresses with names.
qboolean IPLog_Merge_File(const char *fname);
/*used by and for botlib and q3 gamecode*/

View File

@ -371,7 +371,7 @@ static size_t IPLog_Write_Fucked(vfsfile_t *file, qbyte *out, size_t outsize)
}
return write;
}
static qboolean IPLog_Merge_File(const char *fname)
qboolean IPLog_Merge_File(const char *fname)
{
char ip[MAX_ADR_SIZE];
char name[256];