
char *
build_name ( root , filename )
char *root , *filename;
{
	static char buf[ 512 ];

	strcpy ( buf , root );
	if ( buf[ strlen ( buf ) - 1 ] != ':' )
		strcat ( buf , "/" );
	strcat ( buf , filename );
	return ( buf );
}
