snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 0f8c0cd6943992e44a1454ed6c8bdeef0faee722
parent b22786bd55d5e9638710567a311e9855c31db681
Author: default <nobody@localhost>
Date:   Fri, 28 Jul 2023 11:34:18 +0200

Updated comment in headers.

Diffstat:
MLICENSE | 2+-
MREADME.md | 2+-
Mactivitypub.c | 2+-
Mdata.c | 2+-
Mformat.c | 2+-
Mhtml.c | 2+-
Mhttp.c | 2+-
Mhttpd.c | 2+-
Mmain.c | 4++--
Mmastoapi.c | 2+-
Msnac.c | 2+-
Msnac.h | 2+-
Mupgrade.c | 2+-
Mutils.c | 2+-
Mwebfinger.c | 2+-
Mxs.h | 2+-
Mxs_curl.h | 2+-
Mxs_glob.h | 2+-
Mxs_httpd.h | 2+-
Mxs_io.h | 2+-
Mxs_json.h | 2+-
Mxs_mime.h | 2+-
Mxs_openssl.h | 2+-
Mxs_random.h | 2+-
Mxs_regex.h | 2+-
Mxs_set.h | 2+-
Mxs_socket.h | 2+-
Mxs_time.h | 2+-
Mxs_unicode.h | 2+-
29 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 - 2023 grunfink (Fediverse: @grunfink@comam.es) +Copyright (c) 2022 - 2023 grunfink et al. (Fediverse: @grunfink@comam.es) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md @@ -83,6 +83,6 @@ See the LICENSE file for details. ## Author -grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink) +grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink) with the help of others. Buy grunfink a coffee: https://ko-fi.com/grunfink diff --git a/activitypub.c b/activitypub.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_json.h" diff --git a/data.c b/data.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/format.c b/format.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_regex.h" diff --git a/html.c b/html.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/http.c b/http.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/httpd.c b/httpd.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/main.c b/main.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" @@ -12,7 +12,7 @@ int usage(void) { printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n"); - printf("Copyright (c) 2022 - 2023 grunfink / MIT license\n"); + printf("Copyright (c) 2022 - 2023 grunfink et al. / MIT license\n"); printf("\n"); printf("Commands:\n"); printf("\n"); diff --git a/mastoapi.c b/mastoapi.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef NO_MASTODON_API diff --git a/snac.c b/snac.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #define XS_IMPLEMENTATION diff --git a/snac.h b/snac.h @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #define VERSION "2.38" diff --git a/upgrade.c b/upgrade.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/utils.c b/utils.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_io.h" diff --git a/webfinger.c b/webfinger.c @@ -1,5 +1,5 @@ /* snac - A simple, minimalistic ActivityPub instance */ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #include "xs.h" #include "xs_json.h" diff --git a/xs.h b/xs.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_H diff --git a/xs_curl.h b/xs_curl.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_CURL_H diff --git a/xs_glob.h b/xs_glob.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_GLOB_H diff --git a/xs_httpd.h b/xs_httpd.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_HTTPD_H diff --git a/xs_io.h b/xs_io.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_IO_H diff --git a/xs_json.h b/xs_json.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_JSON_H diff --git a/xs_mime.h b/xs_mime.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_MIME diff --git a/xs_openssl.h b/xs_openssl.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_OPENSSL_H diff --git a/xs_random.h b/xs_random.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_RANDOM_H diff --git a/xs_regex.h b/xs_regex.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_REGEX_H diff --git a/xs_set.h b/xs_set.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_SET_H diff --git a/xs_socket.h b/xs_socket.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_SOCKET_H diff --git a/xs_time.h b/xs_time.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_TIME_H diff --git a/xs_unicode.h b/xs_unicode.h @@ -1,4 +1,4 @@ -/* copyright (c) 2022 - 2023 grunfink / MIT license */ +/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */ #ifndef _XS_UNICODE_H