WineHQ:service.cgi: fix winrash option

chmorgan at charter.net chmorgan at charter.net
Fri Jul 23 09:12:30 CDT 2004


Yes.  For some reason I picked the unix style options for winrash.  -s starts, -stop stops.  

What is the service doing with winrash options btw?  The installer stops, installs and starts the winrash service.

The installer uses /S for silent installs, otherwise it will try to popup windows.  Are you sure the service isn't calling the installer with /S?

Chris


> 
> From: Ferenc Wagner <wferi at afavant.elte.hu>
> Date: 2004/07/23 Fri AM 08:32:23 EDT
> To: wine-patches at winehq.com
> CC: cmorgan at alum.WPI.EDU
> Subject: WineHQ:service.cgi: fix winrash option
> 
> Hi,
> 
> looks like something is seriously broken in the system, or
> perhaps in my head.  Version 0009 of winrash doesn't seem to
> understand slashed options at all, but service.cgi tries to
> use /S to start winrash.  The installer issues -s, though.
> So I think there's nothing to lose with this patch.  We
> don't seem to get new reports anyway...
> 
> Feri.
> 
> ChangeLog: The service is started with the -s option, not /S.
> 
> Index: winetest/service.cgi
> ===================================================================
> RCS file: /home/wine/tools/winetest/service.cgi,v
> retrieving revision 1.24
> diff -u -r1.24 service.cgi
> --- winetest/service.cgi	14 Jul 2004 18:33:47 -0000	1.24
> +++ winetest/service.cgi	23 Jul 2004 12:21:19 -0000
> @@ -244,7 +244,7 @@
>      print "download $name $url\n";
>  
>      if ($program eq "winrash") {
> -	print "run $name /S\n";
> +	print "run $name -s\n";
>          return;
>      }
>  
> 




More information about the wine-patches mailing list