Commit c436508d c436508da83ca3247f7350b9a9c2b8639ddca3c8 by Sergey Poznyakoff

* libproto/pop/url.c (_url_pop_init): Remove obsolete call to

mu_url_init.
1 parent 9570a245
...@@ -71,9 +71,8 @@ _url_pop_init (mu_url_t url) ...@@ -71,9 +71,8 @@ _url_pop_init (mu_url_t url)
71 int 71 int
72 _url_pops_init (mu_url_t url) 72 _url_pops_init (mu_url_t url)
73 { 73 {
74 int status = mu_url_init (url, MU_POPS_PORT, "pops"); 74 if (url->port == 0)
75 if (status) 75 url->port = MU_POPS_PORT;
76 return status;
77 76
78 url->_destroy = url_pop_destroy; 77 url->_destroy = url_pop_destroy;
79 78
......