diff options
author | Nikias Bassen | 2014-02-09 06:04:56 +0100 |
---|---|---|
committer | Nikias Bassen | 2014-02-09 06:04:56 +0100 |
commit | f00b135fcef9bbce315995c8af641088d66755f7 (patch) | |
tree | ce19688ba6947237b63bcc94f113ea4dcbe80620 | |
parent | 0d7cc470c04386ffcf7b23a3f41eeda57357528b (diff) | |
download | idevicerestore-f00b135fcef9bbce315995c8af641088d66755f7.tar.gz idevicerestore-f00b135fcef9bbce315995c8af641088d66755f7.tar.bz2 |
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.
-rw-r--r-- | src/normal.c | 4 |
1 files 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; |