Shows an error about wrong permissions

If an import fails, the permissions of the device are tested and an
error message that mentions permissions is shown to the user.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Salvo 'LtWorf' Tomaselli 2014-11-12 21:09:57 +01:00 committed by Dirk Hohndel
parent 2295e0c21e
commit e024a5b207

View file

@ -849,7 +849,9 @@ const char *do_libdivecomputer_import(device_data_t *data)
err = do_device_import(data);
/* TODO: Show the logfile to the user on error. */
dc_device_close(data->device);
}
} else if (access(data->devname, R_OK | W_OK) != 0)
err = translate("gettextFromC", "Insufficient privileges to open the device %s %s (%s)");
dc_context_free(data->context);
if (fp) {