X-Git-Url: https://git.danieliu.xyz/?p=surf.git;a=blobdiff_plain;f=surf.c;h=77e3d6f7f7befb3740959d75a314c03a02e16879;hp=9f0c8a16446ffcb68243a4f6fbe94bd3b97e7e37;hb=d0e3c69e5920eecd7ac7e12c39ccb10e2ca5410d;hpb=5c527339842fdd06411eaf25547aef0902f96915 diff --git a/surf.c b/surf.c index 9f0c8a1..77e3d6f 100644 --- a/surf.c +++ b/surf.c @@ -136,9 +136,9 @@ typedef struct { typedef struct { char *regex; - char *style; + char *file; regex_t re; -} SiteStyle; +} SiteSpecific; /* Surf */ static void usage(void); @@ -304,8 +304,8 @@ setup(void) styles[i].regex); styles[i].regex = NULL; } - styles[i].style = g_strconcat(styledir, "/", - styles[i].style, NULL); + styles[i].file = g_strconcat(styledir, "/", + styles[i].file, NULL); } g_free(styledir); } else { @@ -748,7 +748,7 @@ getstyle(const char *uri) for (i = 0; i < LENGTH(styles); ++i) { if (styles[i].regex && !regexec(&(styles[i].re), uri, 0, NULL, 0)) - return styles[i].style; + return styles[i].file; } return "";