Request HTTPS by default instead of HTTP - surf - surf browser, a WebKit based browser
 (HTM) git clone git://git.suckless.org/surf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b3ba9f59919c33d6a47aaa759f99aef61ee768a9
 (DIR) parent 9ef79bf7106496c736ba613c51d2fd5af9d873a8
 (HTM) Author: Quentin Rameau <quinq@fifth.space>
       Date:   Sun,  5 Jan 2025 12:01:37 +0100
       
       Request HTTPS by default instead of HTTP
       
       This might be more reasonable privacy-wise in 2025.
       
       Diffstat:
         M surf.c                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/surf.c b/surf.c
       @@ -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);