mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Tidied a couple of lines, indentation/comments
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12109 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
60ee9a8c4f
commit
d764d5c8b3
1 changed files with 2 additions and 3 deletions
|
@ -199,13 +199,12 @@ static char *normalize_and_check_dir (char *path)
|
|||
{
|
||||
/* Convert //server/ to a format Windows functions understand. */
|
||||
char *s;
|
||||
|
||||
|
||||
/* Convert //server/path/to/ --> server/path/to */
|
||||
/* Convert //server/path/to/ --> server/path/to/ */
|
||||
normalized_path = malloc (length * sizeof (char));
|
||||
strcpy (normalized_path, &(path[2]));
|
||||
|
||||
/* Convert server/path/to/ --> server:/path/to */
|
||||
/* Convert server/path/to/ --> server:/path/to/ */
|
||||
s = strchr (normalized_path, '/');
|
||||
if (s)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue