smol_http

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 4d93ec51f68a60ed9cf836ddc73e1e3875e96c08
parent dcd2632e5fa0756520ba4c965da7453a6dbc5542
Author: Anton Kling <anton@kling.gg>
Date:   Sun, 20 Feb 2022 15:29:00 +0100

Remove preivous copyright statement.

Diffstat:
Msmol_http.c | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/smol_http.c b/smol_http.c @@ -72,13 +72,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define ASSERT_NOT_REACHED assert(0) -#define COPYRIGHT_STATEMENT \ - "\ -This program is licensed under Affero GNU Public License Version 3.\n\ -See https://www.gnu.org/licenses/ for more information.\n\ -THIS PROGRAM COMES WITHOUT ANY WARRANTY; without even the implied\n\ -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - static const struct { char *ext; char *type; @@ -369,8 +362,6 @@ void usage(const char *const str) { "Usage: %s [-p PORT] [-d Website root directory] -h(Print this " "message)\n", str); - puts("---"); - puts(COPYRIGHT_STATEMENT); } int main(int argc, char **argv) {