* libproto/pop/url.c (_url_pop_init): Remove obsolete call to
mu_url_init.
Showing
1 changed file
with
2 additions
and
3 deletions
... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment