mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
da194ca15e
PR: ports/140610 Submitted by: Emanuele A. Bagnaschi <zephyrus.271@gmail.com> Approved by: maintainer timeout (edwin; 3 months)
28 lines
1002 B
C
28 lines
1002 B
C
--- src/tsp/tsp_setup.c.orig 2009-11-15 20:06:20.000000000 +0100
|
|
+++ src/tsp/tsp_setup.c 2009-11-15 20:07:10.000000000 +0100
|
|
@@ -262,7 +262,7 @@
|
|
//
|
|
if( buffer[0] == 0x00 )
|
|
{
|
|
- pal_snprintf( buffer, sizeof buffer, "%s%c%s.%s", ScriptDir, DirSeparator, pConfig->template, ScriptExtension);
|
|
+ pal_snprintf( buffer, sizeof buffer, "%s%cgw6c-%s.%s", ScriptDir, DirSeparator, pConfig->template, ScriptExtension);
|
|
|
|
f_test = fopen( buffer, "r" );
|
|
if( f_test == NULL )
|
|
@@ -279,13 +279,13 @@
|
|
if( ScriptInterpretor != NULL )
|
|
{
|
|
pal_snprintf( buffer, sizeof buffer,
|
|
- "%s \"%s%c%s.%s\"",
|
|
+ "%s \"%s%cgw6c-%s.%s\"",
|
|
ScriptInterpretor, ScriptDir, DirSeparator, pConfig->template, ScriptExtension);
|
|
}
|
|
else
|
|
{
|
|
pal_snprintf( buffer, sizeof buffer,
|
|
- "\"%s%c%s.%s\"",
|
|
+ "\"%s%cgw6c-%s.%s\"",
|
|
ScriptDir, DirSeparator, pConfig->template, ScriptExtension);
|
|
}
|
|
}
|