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:
Nicola Pero 2002-01-15 00:52:10 +00:00
parent 60ee9a8c4f
commit d764d5c8b3

View file

@ -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)
{