From f00b135fcef9bbce315995c8af641088d66755f7 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 9 Feb 2014 06:04:56 +0100 Subject: normal: remove "ERROR:" prefix from SEPNonce error message Some devices don't have an SEPNonce so this message just sounds fatal while it isn't. --- src/normal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/normal.c b/src/normal.c index d7b1be1..57d2ec2 100644 --- a/src/normal.c +++ b/src/normal.c @@ -349,14 +349,14 @@ static int normal_get_nonce_by_key(struct idevicerestore_client_t* client, const lockdown_error = lockdownd_get_value(lockdown, NULL, key, &nonce_node); if (lockdown_error != LOCKDOWN_E_SUCCESS) { - error("ERROR: Unable to get %s from lockdownd\n", key); + error("Unable to get %s from lockdownd\n", key); lockdownd_client_free(lockdown); idevice_free(device); return -1; } if (!nonce_node || plist_get_node_type(nonce_node) != PLIST_DATA) { - error("ERROR: Unable to get %s\n", key); + error("Unable to get %s\n", key); lockdownd_client_free(lockdown); idevice_free(device); return -1; -- cgit v1.1-32-gdbae