--- gvpe/src/sockinfo.C 2003/04/05 17:54:22 1.5 +++ gvpe/src/sockinfo.C 2003/04/05 18:03:20 1.6 @@ -137,7 +137,7 @@ && conf->udp_port) { prot = prot_; - port = conf->udp_port; + port = htons (conf->udp_port); return true; } @@ -147,7 +147,7 @@ && conf->tcp_port) { prot = prot_; - port = conf->tcp_port; + port = htons (conf->tcp_port); return true; } }