From: Tor Arntsen Date: Thu, 27 May 2010 14:34:57 +0000 (+0200) Subject: curl_fnmatch: remove use of register keyword X-Git-Tag: curl-7_21_0~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97b497a75f3d4ff8e27b279f045f51f59e87ac12;p=thirdparty%2Fcurl.git curl_fnmatch: remove use of register keyword Using the 'register' keyword rarely improves anything with modern compilers and architectures. --- diff --git a/lib/curl_fnmatch.c b/lib/curl_fnmatch.c index dc9dd605ba..410938a292 100644 --- a/lib/curl_fnmatch.c +++ b/lib/curl_fnmatch.c @@ -67,7 +67,7 @@ static int parsekeyword(unsigned char **pattern, unsigned char *charset) char keyword[KEYLEN] = { 0 }; int found = FALSE; int i; - register unsigned char *p = *pattern; + unsigned char *p = *pattern; for(i = 0; !found; i++) { char c = *p++; if(i >= KEYLEN) @@ -123,7 +123,7 @@ static int setcharset(unsigned char **p, unsigned char *charset) unsigned char rangestart = 0; unsigned char lastchar = 0; bool something_found = FALSE; - register unsigned char c; + unsigned char c; for(;;) { c = **p; switch(state) { @@ -300,8 +300,8 @@ static int setcharset(unsigned char **p, unsigned char *charset) static int loop(const unsigned char *pattern, const unsigned char *string) { loop_state state = CURLFNM_LOOP_DEFAULT; - register unsigned char *p = (unsigned char *)pattern; - register unsigned char *s = (unsigned char *)string; + unsigned char *p = (unsigned char *)pattern; + unsigned char *s = (unsigned char *)string; unsigned char charset[CURLFNM_CHSET_SIZE] = { 0 }; int rc = 0;