Index: base/unix/scripts/mkiso_emul.sh
===================================================================
--- base/unix/scripts/mkiso_emul.sh     
+++ base/unix/scripts/mkiso_emul.sh     
@@ -2,7 +2,7 @@
 #------------------------------------------------------------------------------
 # Creates an iso image of a bootable fli4l cd
 #
-# $Id: mkiso.sh 9042 2005-06-11 21:17:25Z lanspezi $
+# $Id$
 #------------------------------------------------------------------------------

 # include cleanup-functions
@@ -46,7 +46,7 @@
            fl_rc=$tmp_dir/floppy.rc
            fl_img=$tmp_dir/floppy.img

-           echo "drive a: file=$fl_img" > $fl_rc
+           echo "drive a: file=\"$fl_img\"" > $fl_rc
            MTOOLSRC="$fl_rc"
            export MTOOLSRC


Property changes on: base/unix/scripts/mkiso_emul.sh
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Revision
Name: svn:eol-style
   + native

Index: base/windows/scripts/_lib_functions.au3
===================================================================
--- base/windows/scripts/_lib_functions.au3     
+++ base/windows/scripts/_lib_functions.au3     
@@ -187,7 +187,7 @@
     #ce^M
 ^M
     $result=DLLCall("kernel32.dll", "int", "GetDiskFreeSpace", "str", $drive & "\", _^M
-            "long*", 0, "long*", 0, "long*", 0, "long*", 0)^M
+            "long_ptr", 0, "long_ptr", 0, "long_ptr", 0, "long_ptr", 0)^M
     If @error = 1 Then^M
         Return 0^M
     Else^M
Index: base/opt/etc/rc.d/rc370.dnsmasq
===================================================================
--- base/opt/etc/rc.d/rc370.dnsmasq     
+++ base/opt/etc/rc.d/rc370.dnsmasq     
@@ -154,22 +154,23 @@

     mkdir /var/run/dnsmasq
     chown dns.dns /var/run/dnsmasq
-    while true; do
-       cd /var/run/dnsmasq
-       ulimit -c unlimited
+    
+#    while true; do
+#      cd /var/run/dnsmasq
+#      ulimit -c unlimited
        dnsmasq --min-port=4096 || log_error "dnsmasq not started"
-       pid=`cat /var/run/dnsmasq.pid`
-       while kill -0 $pid; do
-           sleep 1
-       done
-       log_info "dnsmasq[$pid] terminated"
-       logger -t dnsmasq-debug "dnsmasq[$pid] terminated"
-       if [ -f core ]; then
-           name=/var/run/core.dnsmasq-`date +%F-%T`
-           log_info "core file in $name"
-           logger -t dnsmasq-debug "core file in $name"
-           mv core $name
-       fi
-    done &
+#      pid=`cat /var/run/dnsmasq.pid`
+#      while kill -0 $pid; do
+#          sleep 1
+#      done
+#      log_error "dnsmasq[$pid] terminated"
+#      logger -t dnsmasq-debug "dnsmasq[$pid] terminated"
+#      if [ -f core ]; then
+#          name=/var/run/core.dnsmasq-`date +%F-%T`
+#          log_error "core file in $name"
+#          logger -t dnsmasq-debug "core file in $name"
+#          mv core $name
+#      fi
+ #   done &
     end_script
 fi