mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cloud storage: rethink the terminology used
Cloud storage makes more sense that remote storage - at least I assume that more people are used to thinking about "storing things in the cloud". Don't use PIN or passphrase, call it a password everywhere. Don't use copy_string() to copy the password - the git credentials routine asserts that password is not NULL, so make sure we at least have a pointer to an empty string here. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
97ef9d0ee8
commit
a6b6674780
5 changed files with 31 additions and 33 deletions
6
pref.h
6
pref.h
|
|
@ -90,9 +90,9 @@ struct preferences {
|
|||
bool show_pictures_in_profile;
|
||||
bool use_default_file;
|
||||
facebook_prefs_t facebook;
|
||||
char *passphrase;
|
||||
char *remote_storage_email;
|
||||
bool save_PIN_local;
|
||||
char *cloud_storage_password;
|
||||
char *cloud_storage_email;
|
||||
bool save_password_local;
|
||||
};
|
||||
enum unit_system_values {
|
||||
METRIC,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue