diff options
Diffstat (limited to 'src/proxy/proxytrack.c')
-rw-r--r-- | src/proxy/proxytrack.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/proxy/proxytrack.c b/src/proxy/proxytrack.c index 82bf7b1..02c18d0 100644 --- a/src/proxy/proxytrack.c +++ b/src/proxy/proxytrack.c @@ -131,7 +131,7 @@ Remark: If no cache newer than the added one is found, all entries can be added /* Network base */ #include "htsbasenet.h" -/* définitions globales */ +/* définitions globales */ #include "htsglobal.h" /* htsweb */ @@ -186,7 +186,7 @@ static int linputsoc(T_SOC soc, char* s, int max) { switch(c) { case 13: break; // sauter CR case 10: c=-1; break; - case 9: case 12: break; // sauter ces caractères + case 9: case 12: break; // sauter ces caractères default: s[j++]=(char) c; break; } } @@ -521,7 +521,7 @@ static time_t get_time_rfc822(const char* s) { str[i] = s[i]; } str[i] = 0; - /* éliminer :,- */ + /* éliminer :,- */ while( (a=strchr(str,'-')) ) *a=' '; while( (a=strchr(str,':')) ) *a=' '; while( (a=strchr(str,',')) ) *a=' '; @@ -530,7 +530,7 @@ static time_t get_time_rfc822(const char* s) { while(*a) { char *first,*last; char tok[256]; - /* découper mot */ + /* découper mot */ while(*a==' ') a++; /* sauter espaces */ first=a; while((*a) && (*a!=' ')) a++; |