CLEANUP: tree-wide: remove a few rare non-ASCII chars
As reported by Tim in issue #1428, our sources are clean, there are
just a few files with a few rare non-ASCII chars for the paragraph
symbol, a few typos, or in Fred's name. Given that Fred already uses
the non-accentuated form at other places like on the public list,
let's uniformize all this and make sure the code displays equally
everywhere.
diff --git a/src/cbuf.c b/src/cbuf.c
index f719435..46f12a3 100644
--- a/src/cbuf.c
+++ b/src/cbuf.c
@@ -1,7 +1,7 @@
/*
* Circular buffer management
*
- * Copyright 2021 HAProxy Technologies, Frédéric Lécaille <flecaill@haproxy.com>
+ * Copyright 2021 HAProxy Technologies, Frederic Lecaille <flecaill@haproxy.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/src/hlua.c b/src/hlua.c
index ea6fcba..90f6a73 100644
--- a/src/hlua.c
+++ b/src/hlua.c
@@ -88,10 +88,10 @@
* recovery point outside Lua).
*
* The panic function runs as if it were a message handler (see
- * §2.3); in particular, the error message is at the top of the
+ * #2.3); in particular, the error message is at the top of the
* stack. However, there is no guarantee about stack space. To push
* anything on the stack, the panic function must first check the
- * available space (see §4.2).
+ * available space (see #4.2).
*
* We must check all the Lua entry point. This includes:
* - The include/proto/hlua.h exported functions
diff --git a/src/proto_quic.c b/src/proto_quic.c
index a0b4147..dd37c76 100644
--- a/src/proto_quic.c
+++ b/src/proto_quic.c
@@ -1,7 +1,7 @@
/*
* AF_INET/AF_INET6 QUIC protocol layer.
*
- * Copyright 2020 Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2020 Frederic Lecaille <flecaille@haproxy.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/src/proto_udp.c b/src/proto_udp.c
index d2849c0..a3b455c 100644
--- a/src/proto_udp.c
+++ b/src/proto_udp.c
@@ -1,7 +1,7 @@
/*
* UDP protocol layer on top of AF_INET/AF_INET6
*
- * Copyright 2019 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2019 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* Partial merge by Emeric Brun <ebrun@haproxy.com>
*
diff --git a/src/qpack-dec.c b/src/qpack-dec.c
index 219d1c2..0f087fd 100644
--- a/src/qpack-dec.c
+++ b/src/qpack-dec.c
@@ -1,7 +1,7 @@
/*
* QPACK decompressor
*
- * Copyright 2021 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2021 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/src/qpack-tbl.c b/src/qpack-tbl.c
index 11a3136..6713f6d 100644
--- a/src/qpack-tbl.c
+++ b/src/qpack-tbl.c
@@ -1,7 +1,7 @@
/*
* QPACK header table management (draft-ietf-quic-qpack-20)
*
- * Copyright 2020 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
diff --git a/src/quic_cc.c b/src/quic_cc.c
index f716877..a84cad0 100644
--- a/src/quic_cc.c
+++ b/src/quic_cc.c
@@ -3,7 +3,7 @@
*
* This file contains definitions for QUIC congestion control.
*
- * Copyright 2019 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2019 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/src/quic_cc_newreno.c b/src/quic_cc_newreno.c
index 9a20660..48219ff 100644
--- a/src/quic_cc_newreno.c
+++ b/src/quic_cc_newreno.c
@@ -3,7 +3,7 @@
*
* This file contains definitions for QUIC congestion control.
*
- * Copyright 2019 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2019 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
diff --git a/src/quic_frame.c b/src/quic_frame.c
index c5adddc..e239be1 100644
--- a/src/quic_frame.c
+++ b/src/quic_frame.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2019 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2019 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/src/quic_sock.c b/src/quic_sock.c
index 1d45640..69f6fc9 100644
--- a/src/quic_sock.c
+++ b/src/quic_sock.c
@@ -1,7 +1,7 @@
/*
* QUIC socket management.
*
- * Copyright 2020 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/src/stream.c b/src/stream.c
index 323b6b9..aacbc35 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -715,7 +715,7 @@
/* FIXME: Handle it in appctx_free ??? */
must_free_sess = objt_appctx(sess->origin) && sess->origin == s->csf->end;
- /* FIXME: ATTENTION, si CSF est librérer avant, ça plante !!!! */
+ /* FIXME: ATTENTION, si CSF est libere avant, ca plante !!!! */
cs_detach_endp(s->csb);
cs_detach_endp(s->csf);
cs_detach_app(s->csb);
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index 34c4811..80950b6 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -1,7 +1,7 @@
/*
* QUIC transport layer over SOCK_DGRAM sockets.
*
- * Copyright 2020 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
+ * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License