id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
127,update-smart-drivedb script haven't native FreeBSD's download program,alex-j,chrfranke,"FreeBSD include in the base system native program for downloading that calls 'fetch'

suggestion to add this program to 'update-smart-drivedb'.

Patch attached.
===========================
diff --git a/update-smart-drivedb b/update-smart-drivedb
index b8d5505..32e0c6e 100755
--- a/update-smart-drivedb
+++ b/update-smart-drivedb
@@ -84,8 +84,10 @@ elif which wget >/dev/null 2>/dev/null; then
   DOWNLOAD=""wget $q""'-O ""$DEST.new"" ""$SRC""'
 elif which lynx >/dev/null 2>/dev/null; then
   DOWNLOAD='lynx -source ""$SRC"" >""$DEST.new""'
+elif which fetch >/dev/null 2>/dev/null; then
+  DOWNLOAD='fetch -o ""$DEST.new"" ""$SRC""'
 else
-  echo ""$0: curl, wget or lynx not available"" >&2; exit 1
+  echo ""$0: curl, wget, fetch or lynx not available"" >&2; exit 1
 fi

 # Try possible branch first, then trunk
===========================",enhancement,closed,minor,Release 5.41,drivedb,5.40,fixed,freebsd,
