Skip to content
Snippets Groups Projects
Select Git revision
  • ffdaca7569a96c3d0d90b77bb3a3573d651c5a1f
  • v3.3 default protected
  • experimental protected
  • nrb/airmax-test
  • nrb/ro-flash-nanostation-airmax
  • nrb/add-node-whisperer
  • v3.2 protected
  • v3.1 protected
  • nrb-domains
  • v3.0 protected
  • nrb/dns-cache
  • v2.9 protected
  • feature/addMikrotikwAP
  • v2.8 protected
  • v2.5.1 protected
  • v2.7 protected
  • v2.6 protected
  • v2.5 protected
  • v2.4 protected
  • cpe510
  • nrb/gluon-master-cpe510
  • v3.2.1+2024-12-15
  • v3.2+2024-12-04
  • v3.1+2024-07-08
  • v2.9+2023-05-13
  • v2.9+2023-05-12
  • v2.9+2023-05-10
  • v2.8+2023-03-05
  • v2.7+2022-12-03
  • v2.6+2022-09-06
  • v2.5+2022-05-07
  • v2.5+2022-05-05
  • v2.4+2022-02-26
  • v2.3+2021-06-03
  • v2.3+2021-04-30
  • v2.2+2021-04-16
  • v2.2+2020-04-16
  • v2.1+2020-12-11
  • v2.1+2020-11-17
  • v2.0+2020-09-26
  • v2.0+2020-06-28
41 results

image-customization.lua

Blame
  • 0002-libs-web-remove-strange-static-on-variable-declaration.patch 668 B
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Fri, 16 May 2014 11:29:22 +0200
    Subject: libs/web: remove strange 'static' on variable declaration
    
    diff --git a/modules/base/src/template_parser.c b/modules/base/src/template_parser.c
    index fc8607b..1aa5131 100644
    --- a/modules/base/src/template_parser.c
    +++ b/modules/base/src/template_parser.c
    @@ -66,7 +66,7 @@ static char *strfind(char *haystack, int hslen, const char *needle, int ndlen)
     struct template_parser * template_open(const char *file)
     {
     	struct stat s;
    -	static struct template_parser *parser;
    +	struct template_parser *parser;
     
     	if (!(parser = malloc(sizeof(*parser))))
     		goto err;