lkml.org 
[lkml]   [2020]   [Sep]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 13/24] getpwent_r.3: Use sizeof() to get buffer size (instead of hardcoding macro name)
Date
Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
man3/getpwent_r.3 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/getpwent_r.3 b/man3/getpwent_r.3
index 64f27dbfb..0f7581091 100644
--- a/man3/getpwent_r.3
+++ b/man3/getpwent_r.3
@@ -190,7 +190,7 @@ main(void)

setpwent();
while (1) {
- i = getpwent_r(&pw, buf, BUFLEN, &pwp);
+ i = getpwent_r(&pw, buf, sizeof(buf), &pwp);
if (i)
break;
printf("%s (%d)\etHOME %s\etSHELL %s\en", pwp\->pw_name,
--
2.28.0
\
 
 \ /
  Last update: 2020-09-10 23:17    [W:0.418 / U:2.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site