Subversion Repositories Kolibri OS

Rev

Rev 7742 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7742 Rev 7750
Line 12... Line 12...
12
	if (check_is_the_url_absolute(in_URL)) return;
12
	if (check_is_the_url_absolute(in_URL)) return;
Line 13... Line 13...
13
 
13
 
14
	IF (!strncmp(in_URL,"//", 2)) 
14
	IF (!strncmp(in_URL,"//", 2)) 
15
	{
15
	{
16
		//strcpy(#newurl, "http:");
16
		strcpy(#newurl, "http:");
17
		//strcat(#newurl, in_URL);
-
 
18
		sprintf(#newurl, "http:%s", in_URL);
17
		strcat(#newurl, in_URL);
19
		strcpy(orig_URL, #newurl);
18
		strcpy(orig_URL, #newurl);
20
		return;
19
		return;
Line 21... Line 20...
21
	}
20
	}