Files
termux-packages/packages/neomutt/muttlib.c.patch
termux-pacman-bot 254d4a20c3 upgpkg(main/neomutt): 20240201
Signed-off-by: Kevin Williams <admin@utermux.dev>
2024-02-03 09:08:29 +00:00

15 lines
300 B
Diff

diff --git a/muttlib.c b/muttlib.c
index 69d71c4b1..d9d44205c 100644
--- a/muttlib.c
+++ b/muttlib.c
@@ -369,6 +369,9 @@
*/
char *mutt_gecos_name(char *dest, size_t destlen, struct passwd *pw)
{
+#ifdef __ANDROID__
+ return NULL;
+#endif
regmatch_t pat_match[1] = { 0 };
char *p = NULL;