summaryrefslogtreecommitdiffstats
path: root/pref.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-31 17:42:12 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-31 19:45:05 -0700
commita6b667478034cee6efde4b0828ad4a263345355f (patch)
treef9695816f6bdc075e878849a388ac816a124eb7d /pref.h
parent97ef9d0ee81f9037e7d71041bfb326c304888283 (diff)
downloadsubsurface-a6b667478034cee6efde4b0828ad4a263345355f.tar.gz
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>
Diffstat (limited to 'pref.h')
-rw-r--r--pref.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pref.h b/pref.h
index d400562b4..15e304114 100644
--- a/pref.h
+++ b/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,