diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-01-18 11:50:08 -0500 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-01-18 11:50:08 -0500 |
commit | 606133ecceee2b6f41b319f19dc7f6d58c9869bb (patch) | |
tree | b02a654ebb455ed2f8177bca2d81574bc219c54a /src | |
parent | ef41243e3947608568579fde82bef1f5c74bda47 (diff) |
suppress superfulous error output
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere-host | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monkeysphere-host b/src/monkeysphere-host index eadd74b..da37618 100755 --- a/src/monkeysphere-host +++ b/src/monkeysphere-host @@ -101,7 +101,7 @@ update_gpg_pub_file() { } host_fingerprints() { - local fprs=($(cat "$HOST_KEY_FPR_FILE")) + local fprs=($(cat "$HOST_KEY_FPR_FILE" 2>/dev/null)) log debug "host key fingerprints:" printf '%s\n' "${fprs[@]}" | log debug |