$OpenBSD: patch-GrabWeather,v 1.4 2010/10/13 17:34:26 jasper Exp $
--- GrabWeather.orig	Sun Jan 11 18:15:02 2009
+++ GrabWeather	Sat Apr 10 10:46:54 2010
@@ -40,9 +40,8 @@ my $DataFileName = "$StationID.dat";
 # Is LWP installed?
 eval { require LWP::UserAgent };
 if ($@) {
-  my $cmd = qq{wget --proxy=off --passive-ftp --tries=0 --quiet } .
-            qq{--output-document=$home/$ReportDir/$HTMLFileName $URL};
-  `$cmd` == 0 or die "unable to fetch weather: $?";
+  my $cmd = qq{ftp -o $home/$ReportDir/$HTMLFileName $URL};
+  die "unable to fetch weather: $?" if `$cmd` == 0; 
 } else {
   $ENV{FTP_PASSIVE} = 1; # LWP uses Net::FTP internally.
   my $ua  = new LWP::UserAgent;
