termux-packages/packages/joe/no_getpwent.patch

20 lines
474 B
Diff
Raw Normal View History

2016-12-31 12:57:44 +01:00
--- src/joe/path.c~ 2016-07-18 17:11:09.000000000 +0200
+++ src/joe/path.c 2016-12-26 18:48:04.010421451 +0100
@@ -401,14 +401,14 @@
{
char **lst = NULL;
struct passwd *pw;
-
+#ifndef __ANDROID__
while((pw=getpwent()))
if (rmatch(word+1, pw->pw_name)) {
char *t = vsncpy(NULL,0,sc("~"));
lst = vaadd(lst, vsncpy(sv(t),sz(pw->pw_name)));
}
endpwent();
-
+#endif
return lst;
}
/********************************************************************/