aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/subsurfacestartup.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c
index c51080cd1..5147b3c37 100644
--- a/core/subsurfacestartup.c
+++ b/core/subsurfacestartup.c
@@ -163,20 +163,24 @@ void print_files()
const char *remote = 0;
const char *filename, *local_git;
- filename = cloud_url();
-
- is_git_repository(filename, &branch, &remote, true);
printf("\nFile locations:\n\n");
+ if (!same_string(prefs.cloud_storage_email, "") && !same_string(prefs.cloud_storage_password, "")) {
+ filename = cloud_url();
+
+ is_git_repository(filename, &branch, &remote, true);
+ } else {
+ /* strdup so the free below works in either case */
+ filename = strdup("No valid cloud credentials set.\n");
+ }
if (branch && remote) {
local_git = get_local_dir(remote, branch);
printf("Local git storage: %s\n", local_git);
} else {
printf("Unable to get local git directory\n");
}
- char *tmp = cloud_url();
- printf("Cloud URL: %s\n", tmp);
- free(tmp);
- tmp = hashfile_name_string();
+ printf("Cloud URL: %s\n", filename);
+ free((void *)filename);
+ char *tmp = hashfile_name_string();
printf("Image hashes: %s\n", tmp);
free(tmp);
tmp = picturedir_string();