1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-21 02:47:08 +00:00
termux-packages/packages/neomutt/muttlib.c.patch
2021-01-02 22:24:49 +02:00

16 lines
376 B
Diff

diff --git a/muttlib.c b/muttlib.c
index 69d71c4b1..d9d44205c 100644
--- a/muttlib.c
+++ b/muttlib.c
@@ -361,6 +361,10 @@ char *mutt_expand_path_regex(char *buf, size_t buflen, bool regex)
*/
char *mutt_gecos_name(char *dest, size_t destlen, struct passwd *pw)
{
+#ifdef __ANDROID__
+ return NULL;
+#endif
+
regmatch_t pat_match[1];
size_t pwnl;
char *p = NULL;