Fixed htls bug.
authorFredrik Tolf <fredrik@dolda2000.com>
Mon, 30 Aug 2010 01:50:06 +0000 (03:50 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Mon, 30 Aug 2010 01:50:28 +0000 (03:50 +0200)
src/htls.c

index 060d1bf..907187c 100644 (file)
@@ -73,7 +73,7 @@ static int dcmp(const void *ap, const void *bp)
 
 static void head(char *name, struct charbuf *dst)
 {
-    char *title, *tmp;
+    char *title;
     
     title = sstrdup(htmlquote(name));
     bprintf(dst, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
@@ -82,7 +82,7 @@ static void head(char *name, struct charbuf *dst)
     bprintf(dst, "<head>\n");
     bprintf(dst, "<title>Index of %s</title>\n", title);
     if(stylesheet) {
-       bprintf(dst, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n", htmlquote(tmp));
+       bprintf(dst, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\" />\n", htmlquote(stylesheet));
     } else {
        bprintf(dst, "<style>\n");
        bprintf(dst, "body {font-family: sans-serif; background: #eee;}\n");