Added a missing PR_htons call. Thanks to Bert Driehuis

<bert_driehuis@nl.compuware.com> for the bug report and fix.
This commit is contained in:
wtc%netscape.com 1999-02-01 19:56:49 +00:00
Родитель 710b99fd12
Коммит 4bc76045fa
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -154,7 +154,7 @@ _server_thread(void *arg_id)
memset(&sa, 0 , sizeof(sa));
sa.inet.family = PR_AF_INET;
sa.inet.port = PORT_BASE + *id;
sa.inet.port = PR_htons(PORT_BASE + *id);
sa.inet.ip = PR_htonl(PR_INADDR_ANY);
if ( PR_Bind(sock, &sa) < 0) {