diff options
Diffstat (limited to 'user/lolcat/https.patch')
-rw-r--r-- | user/lolcat/https.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/user/lolcat/https.patch b/user/lolcat/https.patch new file mode 100644 index 000000000..630154df1 --- /dev/null +++ b/user/lolcat/https.patch @@ -0,0 +1,24 @@ +--- lolcat-1.0/lolcat.c.old 2018-12-02 04:37:59.000000000 +0000 ++++ lolcat-1.0/lolcat.c 2019-06-15 20:28:03.295298585 +0000 +@@ -45,9 +45,9 @@ + " lolcat Copy standard input to standard output.\n" + " fortune | lolcat Display a rainbow cookie.\n" + "\n" +- "Report lolcat bugs to <http://www.github.org/jaseg/lolcat/issues>\n" +- "lolcat home page: <http://www.github.org/jaseg/lolcat/>\n" +- "Original idea: <http://www.github.org/busyloop/lolcat/>\n"; ++ "Report lolcat bugs to <https://github.com/jaseg/lolcat/issues>\n" ++ "lolcat home page: <https://github.com/jaseg/lolcat/>\n" ++ "Original idea: <https://github.com/busyloop/lolcat/>\n"; + + #define ARRAY_SIZE(foo) (sizeof(foo) / sizeof(foo[0])) + const unsigned char codes[] = { 39, 38, 44, 43, 49, 48, 84, 83, 119, 118, 154, 148, 184, 178, 214, 208, 209, 203, 204, 198, 199, 163, 164, 128, 129, 93, 99, 63, 69, 33 }; +@@ -72,7 +72,7 @@ + + static void version(void) + { +- wprintf(L"lolcat version 0.1, (c) 2014 jaseg\n"); ++ wprintf(L"lolcat version 1.0, (c) 2014-2018 jaseg\n"); + exit(0); + } + |