Пример #1
0
void imap_unmunge_mbox_name (char *s)
{
  char *buf;

  imap_unquote_string (s);

  buf = str_dup (s);
  if (buf) {
    imap_utf7_decode (&buf);
    strncpy (s, buf, str_len (s));
  }

  mem_free (&buf);
}
Пример #2
0
void imap_unmunge_mbox_name (char *s)
{
  char *buf;

  imap_unquote_string(s);

  buf = safe_strdup (s);
  if (buf)
  {
    imap_utf7_decode (&buf);
    strncpy (s, buf, strlen (s));
  }

  FREE (&buf);
}