1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: =?utf-8?b?0L3QsNCx?= <nabijaczleweli@nabijaczleweli.xyz>
Date: Wed, 11 Dec 2024 18:48:22 +0100
Subject: Fix non-UTF-8 encoding in src/nstreams.c
---
src/nstreams.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/nstreams.c b/src/nstreams.c
index 625a24b..cca0c69 100644
--- a/src/nstreams.c
+++ b/src/nstreams.c
@@ -23,7 +23,7 @@
*
* Network Streams -- a tcpdump analyzer tool.
*
- * (C) 1999 Renaud Deraison and Herv Schauer Consultant -- http://www.hsc.fr
+ * (C) 1999 Renaud Deraison and Hervé Schauer Consultant -- http://www.hsc.fr
*
*/
#include <includes.h>
@@ -99,7 +99,7 @@ void version()
{
printf("This is nstreams %s\n", PACKAGE_VERSION);
printf("Copyright (C) 1999 Renaud Deraison <deraison@nessus.org>\n");
- printf(" and Herv Schauer Consultants -- http://www.hsc.fr\n");
+ printf(" and Hervé Schauer Consultants -- http://www.hsc.fr\n");
printf("\n\n");
exit(0);
}
|