diff options
Diffstat (limited to 'src/lib/emailer.cc')
| -rw-r--r-- | src/lib/emailer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/emailer.cc b/src/lib/emailer.cc index 7bed7ef97..f5812f0c2 100644 --- a/src/lib/emailer.cc +++ b/src/lib/emailer.cc @@ -231,7 +231,7 @@ Emailer::send (string server, int port, EmailProtocol protocol, string user, str auto const r = curl_easy_perform (curl); if (r != CURLE_OK) { - throw NetworkError (_("Failed to send email"), curl_easy_strerror(r)); + throw NetworkError (_("Failed to send email"), string(curl_easy_strerror(r))); } curl_slist_free_all (recipients); |
