Commit 2c37692e authored by gatty's avatar gatty

Fix port numbers > 4 digits. Patch courtesy of cpulinker@yandex.ru

git-svn-id: svn://svn.videolan.org/dvblast/trunk@95 55d3f8b6-4a41-4d2d-a900-313d1436a5b8
parent 32ba9497
...@@ -101,7 +101,7 @@ static void ReadConfiguration( char *psz_file ) ...@@ -101,7 +101,7 @@ static void ReadConfiguration( char *psz_file )
char *psz_parser, *psz_token, *psz_token2, *psz_token3; char *psz_parser, *psz_token, *psz_token2, *psz_token3;
struct addrinfo *p_addr; struct addrinfo *p_addr;
struct addrinfo ai_hints; struct addrinfo ai_hints;
char sz_port[5]; char sz_port[6];
char *psz_displayname; char *psz_displayname;
uint16_t i_sid = 0; uint16_t i_sid = 0;
uint16_t *pi_pids = NULL; uint16_t *pi_pids = NULL;
...@@ -456,7 +456,7 @@ int main( int i_argc, char **pp_argv ) ...@@ -456,7 +456,7 @@ int main( int i_argc, char **pp_argv )
case 'd': case 'd':
{ {
char *psz_token, *psz_displayname; char *psz_token, *psz_displayname;
char sz_port[5]; char sz_port[6];
struct addrinfo *p_daddr; struct addrinfo *p_daddr;
struct addrinfo ai_hints; struct addrinfo ai_hints;
int i_dup_config = 0; int i_dup_config = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment