Author: nextgens Date: 2006-09-02 13:13:53 +0000 (Sat, 02 Sep 2006) New Revision: 10346
Modified: trunk/apps/new_installer/res/unix/bin/1run.sh trunk/apps/new_installer/res/windows/bin/1run.cmd Log: fix more typos Modified: trunk/apps/new_installer/res/unix/bin/1run.sh =================================================================== --- trunk/apps/new_installer/res/unix/bin/1run.sh 2006-09-02 13:11:04 UTC (rev 10345) +++ trunk/apps/new_installer/res/unix/bin/1run.sh 2006-09-02 13:13:53 UTC (rev 10346) @@ -54,7 +54,7 @@ fi echo -e "fproxy.enabled=true\nfproxy.port=$FPROXY_PORT" >> freenet.ini -# Try to auto-detect the first aviable port for fcp +# Try to auto-detect the first available port for fcp FCP_PORT=9481 java -jar bin/bindtest.jar $FCP_PORT if [[ $? -ne 0 ]] @@ -64,7 +64,7 @@ fi echo -e "fcp.enabled=true\nfcp.port=$FCP_PORT" >> freenet.ini -# Try to auto-detect the first aviable port for console +# Try to auto-detect the first available port for console CONSOLE_PORT=2323 java -jar bin/bindtest.jar $CONSOLE_PORT if [[ $? -ne 0 ]] Modified: trunk/apps/new_installer/res/windows/bin/1run.cmd =================================================================== --- trunk/apps/new_installer/res/windows/bin/1run.cmd 2006-09-02 13:11:04 UTC (rev 10345) +++ trunk/apps/new_installer/res/windows/bin/1run.cmd 2006-09-02 13:13:53 UTC (rev 10346) @@ -57,14 +57,14 @@ @echo fproxy.enable=true >>freenet.ini @echo fproxy.port=%FPROXY_PORT% >>freenet.ini -:: Try to detect a free, aviable port for fcp +:: Try to detect a free, available port for fcp @set FCP_PORT=9481 @java -jar bin\bindtest.jar %FCP_PORT% @if not errorlevel 0 set FCP_PORT=9482 @echo fcp.enable=true >>freenet.ini @echo fcp.port=%FCP_PORT% >>freenet.ini -:: Try to detect a free, aviable port for console +:: Try to detect a free, available port for console @set CONSOLE_PORT=2323 @java -jar bin\bindtest.jar %CONSOLE_PORT% @if not errorlevel 0 set CONSOLE_PORT=2324
