summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-05-22 22:02:26 +0200
committerSimon Josefsson <simon@josefsson.org>2010-05-22 22:02:26 +0200
commit3deda2c2f0c2acd25077b132b3d49c7e53159e8f (patch)
tree2eca838a1ff7d33e00cadce44fa286c63858df12 /doc
parent5fc3704e32462fb649b912749afbba6578df6ce0 (diff)
downloadgnutls-3deda2c2f0c2acd25077b132b3d49c7e53159e8f.tar.gz
Change GNUTLS into GnuTLS.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/credentials/Makefile.am2
-rw-r--r--doc/cyclo/Makefile.am2
-rw-r--r--doc/errcodes.c6
-rw-r--r--doc/examples/Makefile.am2
-rw-r--r--doc/examples/ex-client-srp.c2
-rw-r--r--doc/examples/ex-serv-anon.c2
-rw-r--r--doc/examples/ex-serv-pgp.c2
-rw-r--r--doc/examples/ex-serv-psk.c2
-rw-r--r--doc/examples/ex-serv-srp.c2
-rw-r--r--doc/examples/ex-serv1.c2
-rw-r--r--doc/gnutls.texi2
-rw-r--r--doc/manpages/Makefile.am2
-rw-r--r--doc/printlist.c6
14 files changed, 18 insertions, 18 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index decf11a192..b474ab8ae5 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -4,7 +4,7 @@
#
# Author: Nikos Mavrogiannopoulos
#
-# This file is part of GNUTLS.
+# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/doc/credentials/Makefile.am b/doc/credentials/Makefile.am
index 305253596c..a8ec98ab2d 100644
--- a/doc/credentials/Makefile.am
+++ b/doc/credentials/Makefile.am
@@ -3,7 +3,7 @@
#
# Author: Simon Josefsson
#
-# This file is part of GNUTLS.
+# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/doc/cyclo/Makefile.am b/doc/cyclo/Makefile.am
index da4e3d6139..31680c97ef 100644
--- a/doc/cyclo/Makefile.am
+++ b/doc/cyclo/Makefile.am
@@ -4,7 +4,7 @@
#
# Author: Simon Josefsson
#
-# This file is part of GNUTLS.
+# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/doc/errcodes.c b/doc/errcodes.c
index 2c3f255e2b..9c22b665b1 100644
--- a/doc/errcodes.c
+++ b/doc/errcodes.c
@@ -3,14 +3,14 @@
* Foundation, Inc.
* Author: Nikos Mavrogiannopoulos, Simon Josefsson
*
- * This file is part of GNUTLS.
+ * This file is part of GnuTLS.
*
- * GNUTLS is free software: you can redistribute it and/or modify
+ * GnuTLS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * GnuTLS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am
index a8206ac13e..81548ca7c9 100644
--- a/doc/examples/Makefile.am
+++ b/doc/examples/Makefile.am
@@ -4,7 +4,7 @@
#
# Author: Simon Josefsson
#
-# This file is part of GNUTLS.
+# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/doc/examples/ex-client-srp.c b/doc/examples/ex-client-srp.c
index 6a8dd68a73..454216b52e 100644
--- a/doc/examples/ex-client-srp.c
+++ b/doc/examples/ex-client-srp.c
@@ -88,7 +88,7 @@ main (void)
{
if (ret == 0)
{
- printf ("- Peer has closed the GNUTLS connection\n");
+ printf ("- Peer has closed the GnuTLS connection\n");
goto end;
}
else
diff --git a/doc/examples/ex-serv-anon.c b/doc/examples/ex-serv-anon.c
index a9b908b481..d343b2b84c 100644
--- a/doc/examples/ex-serv-anon.c
+++ b/doc/examples/ex-serv-anon.c
@@ -137,7 +137,7 @@ main (void)
if (ret == 0)
{
- printf ("\n- Peer has closed the GNUTLS connection\n");
+ printf ("\n- Peer has closed the GnuTLS connection\n");
break;
}
else if (ret < 0)
diff --git a/doc/examples/ex-serv-pgp.c b/doc/examples/ex-serv-pgp.c
index da8e8eff92..0494d2b53f 100644
--- a/doc/examples/ex-serv-pgp.c
+++ b/doc/examples/ex-serv-pgp.c
@@ -151,7 +151,7 @@ main (void)
if (ret == 0)
{
- printf ("\n- Peer has closed the GNUTLS connection\n");
+ printf ("\n- Peer has closed the GnuTLS connection\n");
break;
}
else if (ret < 0)
diff --git a/doc/examples/ex-serv-psk.c b/doc/examples/ex-serv-psk.c
index f661ff9cec..b5768b443a 100644
--- a/doc/examples/ex-serv-psk.c
+++ b/doc/examples/ex-serv-psk.c
@@ -182,7 +182,7 @@ main (void)
if (ret == 0)
{
- printf ("\n- Peer has closed the GNUTLS connection\n");
+ printf ("\n- Peer has closed the GnuTLS connection\n");
break;
}
else if (ret < 0)
diff --git a/doc/examples/ex-serv-srp.c b/doc/examples/ex-serv-srp.c
index d601fa2cf4..f9befbe409 100644
--- a/doc/examples/ex-serv-srp.c
+++ b/doc/examples/ex-serv-srp.c
@@ -141,7 +141,7 @@ main (void)
if (ret == 0)
{
- printf ("\n- Peer has closed the GNUTLS connection\n");
+ printf ("\n- Peer has closed the GnuTLS connection\n");
break;
}
else if (ret < 0)
diff --git a/doc/examples/ex-serv1.c b/doc/examples/ex-serv1.c
index 755bf8d202..9d436105fc 100644
--- a/doc/examples/ex-serv1.c
+++ b/doc/examples/ex-serv1.c
@@ -168,7 +168,7 @@ main (void)
if (ret == 0)
{
- printf ("\n- Peer has closed the GNUTLS connection\n");
+ printf ("\n- Peer has closed the GnuTLS connection\n");
break;
}
else if (ret < 0)
diff --git a/doc/gnutls.texi b/doc/gnutls.texi
index 5efa562605..3d1b8853d4 100644
--- a/doc/gnutls.texi
+++ b/doc/gnutls.texi
@@ -4169,7 +4169,7 @@ If all of them are used then GnuTLS will no longer use libgcrypt.
@menu
* GNU Free Documentation License:: License for copying this manual.
* GNU LGPL:: License for copying the core GnuTLS library.
-* GNU GPL:: License for copying GNUTLS extra and tools.
+* GNU GPL:: License for copying GnuTLS-extra and tools.
@end menu
@node GNU Free Documentation License
diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index 36d92db4a6..6afff0ae5a 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -4,7 +4,7 @@
#
# Author: Nikos Mavroyanopoulos, Simon Josefsson
#
-# This file is part of GNUTLS.
+# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
diff --git a/doc/printlist.c b/doc/printlist.c
index aaa6fe072a..140f08012d 100644
--- a/doc/printlist.c
+++ b/doc/printlist.c
@@ -2,14 +2,14 @@
* Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
* Author: Nikos Mavrogiannopoulos
*
- * This file is part of GNUTLS.
+ * This file is part of GnuTLS.
*
- * GNUTLS is free software: you can redistribute it and/or modify
+ * GnuTLS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * GNUTLS is distributed in the hope that it will be useful,
+ * GnuTLS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.