summaryrefslogtreecommitdiff
path: root/src/imlib.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-04-22 10:51:10 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-04-22 10:51:10 +0200
commit5fda4f2c6a046a9e24f13cb3091a5afd28aaa794 (patch)
treef660d27d3b3e2930d1338bfbb37f13c89fcbf6e0 /src/imlib.c
parent3bb7b940c2604399844a6608d57d134e6749a61a (diff)
Remove unused feh_strip_hostname function
Diffstat (limited to 'src/imlib.c')
-rw-r--r--src/imlib.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/imlib.c b/src/imlib.c
index 92c196a..d125286 100644
--- a/src/imlib.c
+++ b/src/imlib.c
@@ -316,31 +316,6 @@ char *feh_http_load_image(char *url)
#endif /* HAVE_LIBCURL */
-char *feh_strip_hostname(char *url)
-{
- char *ret;
- char *start;
- char *finish;
- int len;
-
- start = strchr(url, '/');
- if (!start)
- return(NULL);
-
- start += 2;
-
- finish = strchr(start, '/');
- if (!finish)
- return(NULL);
-
- len = finish - start;
-
- ret = emalloc(len + 1);
- strncpy(ret, start, len);
- ret[len] = '\0';
- return(ret);
-}
-
void feh_draw_zoom(winwidget w)
{
static Imlib_Font fn = NULL;