]> granicus.if.org Git - mutt/commitdiff
Removed unused mutt_expand_link()
authorKevin McCarthy <kevin@8t8.us>
Tue, 15 Oct 2019 06:38:07 +0000 (14:38 +0800)
committerKevin McCarthy <kevin@8t8.us>
Tue, 15 Oct 2019 06:38:07 +0000 (14:38 +0800)
muttlib.c
protos.h

index eed74ce95dfdacdb86fe5a2be256cb944cb15f95..ecb73d97a0016fd5990a39aead3f30ecfbe27b3e 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -402,31 +402,6 @@ int mutt_matches_ignore (const char *s, LIST *t)
   return 0;
 }
 
-/* prepend the path part of *path to *link */
-void mutt_expand_link (char *newpath, const char *path, const char *link)
-{
-  const char *lb = NULL;
-  size_t len;
-
-  /* link is full path */
-  if (*link == '/')
-  {
-    strfcpy (newpath, link, _POSIX_PATH_MAX);
-    return;
-  }
-
-  if ((lb = strrchr (path, '/')) == NULL)
-  {
-    /* no path in link */
-    strfcpy (newpath, link, _POSIX_PATH_MAX);
-    return;
-  }
-
-  len = lb - path + 1;
-  memcpy (newpath, path, len);
-  strfcpy (newpath + len, link, _POSIX_PATH_MAX - len);
-}
-
 char *mutt_expand_path (char *s, size_t slen)
 {
   return _mutt_expand_path (s, slen, 0);
index bbf88eac93da54d0fdbe57be0a9a3ea2487bf41b..8ee932c8aca5e757f813c48868de8b8ce78e5992 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -213,7 +213,6 @@ void mutt_error_history_init (void);
 void mutt_expand_aliases_env (ENVELOPE *);
 void mutt_expand_file_fmt (BUFFER *, const char *, const char *);
 void mutt_expand_fmt (BUFFER *, const char *, const char *);
-void mutt_expand_link (char *, const char *, const char *);
 void mutt_fix_reply_recipients (ENVELOPE *env);
 void mutt_folder_hook (const char *);
 void mutt_format_string (char *, size_t, int, int, int, char, const char *, size_t, int);