X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=init.c;h=a9b318e61b8c1f6b718dc04c452126a2b595c8a5;hp=96990c2ace36791daf26cb9a86ffce7f78f803e0;hb=dbacadf0ce81052365d7a43373ac7d4ac67ff91e;hpb=03fe827a7d4a7ad79ac235654414aa339a9a2c9a diff --git a/init.c b/init.c index 96990c2..a9b318e 100644 --- a/init.c +++ b/init.c @@ -24,6 +24,8 @@ #include #include +#include + #include #include "mutt.h" @@ -36,7 +38,7 @@ #include "mutt_idna.h" #if defined(USE_SSL) || defined(USE_GNUTLS) -#include +#include #endif #if defined (USE_LIBESMTP) && (defined (USE_SSL) || defined (USE_GNUTLS)) @@ -2608,7 +2610,8 @@ void mutt_init (int skip_sys_rc, LIST * commands) if (!Homedir) Homedir = m_strdup(pw->pw_dir); - Realname = m_strdup(mutt_gecos_name (rnbuf, sizeof(rnbuf), pw)); + mutt_gecos_name(rnbuf, sizeof(rnbuf), pw, GecosMask.rx); + Realname = m_strdup(rnbuf); Shell = m_strdup(pw->pw_shell); endpwent (); }