diff options
| author | Quentin Rameau <quinq@fifth.space> | 2025-01-05 12:01:37 +0100 |
|---|---|---|
| committer | Quentin Rameau <quinq@fifth.space> | 2025-01-05 12:02:38 +0100 |
| commit | b3ba9f59919c33d6a47aaa759f99aef61ee768a9 (patch) | |
| tree | 70184cb18e7092007609cd054d8117ad9814abec /surf.c | |
| parent | 9ef79bf7106496c736ba613c51d2fd5af9d873a8 (diff) | |
Request HTTPS by default instead of HTTP
This might be more reasonable privacy-wise in 2025.
Diffstat (limited to 'surf.c')
| -rw-r--r-- | surf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -579,7 +579,7 @@ loaduri(Client *c, const Arg *a) url = g_strdup_printf("file://%s", path); free(path); } else { - url = g_strdup_printf("http://%s", uri); + url = g_strdup_printf("https://%s", uri); } if (apath != uri) free(apath); |