*** empty log message ***

svn path=/trunk/boinc/; revision=2182
This commit is contained in:
chrisz 2003-08-22 23:09:40 +00:00
parent c0e82ee287
commit 3716094be0
1 changed files with 1 additions and 9 deletions

View File

@ -349,17 +349,9 @@ void escape_url_readable(char *in, char* out) {
if (isalnum(in[x]) || in[x]=='.' || in[x]=='-' || in[x]=='_') {
out[y] = in[x];
++y;
} else if (in[x] == '/' || in[x] == '\\' || in[x] == ' ') {
} else {
out[y] = '_';
++y;
} else {
out[y] = '%';
++y;
out[y] = 0;
sprintf(buf, "%d", (char)in[x]);
c2x(buf);
strcat(out, buf);
y += 2;
}
}
out[y] = 0;