From 69cd18e15841aa915756dddb231323d65490b55a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 10 Feb 2014 20:05:41 +0100 Subject: ideviceimagemounter: change output 'Copying' to more correct 'Uploading' --- tools/ideviceimagemounter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/ideviceimagemounter.c') diff --git a/tools/ideviceimagemounter.c b/tools/ideviceimagemounter.c index d47507a..3cd1e55 100644 --- a/tools/ideviceimagemounter.c +++ b/tools/ideviceimagemounter.c @@ -425,15 +425,16 @@ int main(int argc, char **argv) goto leave; } - printf("Copying '%s' --> '%s'\n", image_path, targetname); if (!imagetype) { imagetype = strdup("Developer"); } if (ge70) { + printf("Uploading %s\n", image_path); err = mobile_image_mounter_upload_image(mim, imagetype, image_size, mim_upload_cb, f); } else { + printf("Uploading %s --> afc:///%s\n", image_path, targetname); char **strs = NULL; if (afc_get_file_info(afc, PKG_PATH, &strs) != AFC_E_SUCCESS) { if (afc_make_directory(afc, PKG_PATH) != AFC_E_SUCCESS) { -- cgit v1.1-32-gdbae