*** empty log message ***
[mir.git] / source / mir / misc / Helper.java
index 0dad690..7fce85f 100755 (executable)
@@ -20,7 +20,7 @@ public class Helper {
         * returns 255 if rsync should not be used
    */
   public static int rsync(){
-               if(!Configuration.getProperty("Rsync").toLowerCase().equals("yes")){
+               if(!MirConfig.getProp("Rsync").toLowerCase().equals("yes")){
                        return 255;
                }
                
@@ -28,7 +28,7 @@ public class Helper {
     int returnValue = -1;
     try {
       Runtime run = Runtime.getRuntime();
-      p = run.exec(Configuration.getProperty("Rsync.Script.Path"));
+      p = run.exec(MirConfig.getProp("Rsync.Script.Path"));
       returnValue = p.waitFor();
     } catch (IOException e) {
       return returnValue;