diff mbox series

inet: Fix comments in <aliases.h>

Message ID 5f3e2627-c213-5c74-d7f2-5e62703f9d34@jguk.org
State New
Headers show
Series inet: Fix comments in <aliases.h> | expand

Commit Message

Jonny Grant Oct. 24, 2020, 10:57 p.m. UTC
Hello Florian

Please find attached patch created against latest git.

Regards, Jonny
diff mbox series

Patch

From a5fabcc78d88062a30a3ca03688b1aa0923f4fd1 Mon Sep 17 00:00:00 2001
From: Jonathan Grant <jg@jguk.org>
Date: Sat, 24 Oct 2020 23:48:47 +0100
Subject: [PATCH] rename comments to database

Signed-off-by: Jonathan Grant <jg@jguk.org>
---
 inet/aliases.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/inet/aliases.h b/inet/aliases.h
index b22ed63831..5722e9d0da 100644
--- a/inet/aliases.h
+++ b/inet/aliases.h
@@ -25,7 +25,7 @@ 
 
 __BEGIN_DECLS
 
-/* Structure to represent one entry of the alias data base.  */
+/* Structure to represent one entry of the alias database.  */
 struct aliasent
   {
     char *alias_name;
@@ -38,13 +38,13 @@  struct aliasent
 /* Open alias data base files.  */
 extern void setaliasent (void) __THROW;
 
-/* Close alias data base files.  */
+/* Close alias database files.  */
 extern void endaliasent (void) __THROW;
 
-/* Get the next entry from the alias data base.  */
+/* Get the next entry from the alias database.  */
 extern struct aliasent *getaliasent (void) __THROW;
 
-/* Get the next entry from the alias data base and put it in RESULT_BUF.  */
+/* Get the next entry from the alias database and put it in RESULT_BUF.  */
 extern int getaliasent_r (struct aliasent *__restrict __result_buf,
 			  char *__restrict __buffer, size_t __buflen,
 			  struct aliasent **__restrict __result) __THROW;
-- 
2.25.1