diff options
author | Milan Crha <mcrha@redhat.com> | 2012-11-06 23:25:21 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-11-06 23:25:21 +0800 |
commit | 0bfb97d530da59f876460652de4bef321d1b35f4 (patch) | |
tree | 1471b98f4b3befcea19651a140898cc82648d140 /mail | |
parent | 704b78d23bf8d707707411608a3453250f2637a1 (diff) | |
download | gsoc2013-evolution-0bfb97d530da59f876460652de4bef321d1b35f4.tar.gz gsoc2013-evolution-0bfb97d530da59f876460652de4bef321d1b35f4.tar.zst gsoc2013-evolution-0bfb97d530da59f876460652de4bef321d1b35f4.zip |
Replace deprecated soup_message_headers_get() with soup_message_headers_get_list()
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-http-request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-http-request.c b/mail/e-http-request.c index eef570ac3f..dd144f81a5 100644 --- a/mail/e-http-request.c +++ b/mail/e-http-request.c @@ -88,7 +88,7 @@ redirect_handler (SoupMessage *msg, SoupURI *new_uri; const gchar *new_loc; - new_loc = soup_message_headers_get (msg->response_headers, "Location"); + new_loc = soup_message_headers_get_list (msg->response_headers, "Location"); if (!new_loc) return; |