aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-09-19 18:43:17 +0200
committerJokler <jokler.contact@gmail.com>2018-09-19 18:43:17 +0200
commita862046b0d34a2d23fdfa25d7bfb5dcc8c73dd45 (patch)
tree18b9f8f19e57f57613ea6e6bef90fb5f59999660 /src/main.rs
parent66ea53eb077fce74d483fd60d0105d85654088bc (diff)
downloadfrippy-a862046b0d34a2d23fdfa25d7bfb5dcc8c73dd45.tar.gz
frippy-a862046b0d34a2d23fdfa25d7bfb5dcc8c73dd45.zip
Main: Update dependencies
This fixes builds for OpenSSL 1.1.1.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index ad4c020..9aed069 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -57,8 +57,7 @@ fn main() {
// Print any errors that caused frippy to shut down
if let Err(e) = run() {
- let text = e.causes()
- .skip(1)
+ let text = e.iter_causes()
.fold(format!("{}", e), |acc, err| format!("{}: {}", acc, err));
error!("{}", text);
}