Subversion Repositories Kolibri OS

Rev

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

Rev 1668 Rev 2323
Line 35... Line 35...
35
	}
35
	}
36
else
36
else
37
	{
37
	{
38
	strcpy(temp, cur_dir);
38
	strcpy(temp, cur_dir);
39
	strcat(temp, dir);
39
	if (cur_dir[strlen(cur_dir)-1] != '/') 
-
 
40
		strcat(temp, "/");
-
 
41
	strcat(temp, dir);
40
 
42
 
Line 41... Line 43...
41
	if ( dir_check(temp) )
43
	if ( dir_check(temp) )
42
		{
44
		{
-
 
45
 
43
		strcpy(cur_dir, temp);
46
		strcpy(cur_dir, temp);
44
		return TRUE;
47
		return TRUE;
45
		}
48
		}
Line 46... Line 49...
46
 
49