[PATCH] netdb: increase line size for /etc/services

Natanael Copa natanael.copa at gmail.com
Wed Aug 11 12:06:22 UTC 2010


If /etc/services has lines longer than 80 will getservbyname() fail
so we set it up to 160.

Signed-off-by: Natanael Copa <natanael.copa at gmail.com>
---
 libc/inet/getservice.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libc/inet/getservice.c b/libc/inet/getservice.c
index 03f5c29..8248f7a 100644
--- a/libc/inet/getservice.c
+++ b/libc/inet/getservice.c
@@ -29,7 +29,7 @@ aliases: case sensitive optional space or tab separated list of other names
 __UCLIBC_MUTEX_STATIC(mylock, PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP);
 
 #define	MAXALIASES	35
-#define BUFSZ		(80) /* one line */
+#define BUFSZ		(160) /* one line */
 #define SBUFSIZE	(BUFSZ + 1 + (sizeof(char *) * MAXALIASES))
 
 static parser_t *servp = NULL;
-- 
1.7.2.1



More information about the uClibc mailing list