summaryrefslogtreecommitdiff
path: root/src/proxy/proxytrack.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-05-14 19:20:14 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-05-14 19:20:14 +0000
commit0573b166b2aa2ee40be1a328636cb539d96aeeac (patch)
tree60225c1335ff26c5e4f29bc7043548daa44c7d73 /src/proxy/proxytrack.c
parenteaef7eb1f7ae092d73eeffa245ab418d70748fdf (diff)
Merge sources from windows-1252 to utf-8
Diffstat (limited to 'src/proxy/proxytrack.c')
-rw-r--r--src/proxy/proxytrack.c8
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++;