]> git.p6c8.net - devedit.git/commitdiff
Some small changes
authorpcanterino <>
Mon, 2 Aug 2004 09:55:53 +0000 (09:55 +0000)
committerpcanterino <>
Mon, 2 Aug 2004 09:55:53 +0000 (09:55 +0000)
modules/Command.pm
modules/File/Access.pm
modules/Tool.pm

index 8e4716365ea22c0c082755da4f0fc7bb8b205db5..a25f8f084113268d851fbc8d71abd6d9cee80493 100644 (file)
@@ -6,7 +6,7 @@ package Command;
 # Execute Dev-Editor's commands
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-07-28
+# Last modified: 2004-08-02
 #
 
 use strict;
@@ -772,7 +772,7 @@ sub exec_chprop($$)
    }
    else
    {
-    my @stat     = lstat($physical);
+    my @stat     = stat($physical);
 
     my $mode     = $stat[2];
     my $mode_oct = substr(sprintf("%04o",$mode),-4);
index bc1e37d57437f7c248c0ac7ce556d624cdd020b8..5bd797ce4572bc1b5ec8e2c52cf9692b667659e4 100644 (file)
@@ -40,7 +40,7 @@ use base qw(Exporter);
 sub chgrp($@)
 {
  my ($group,@files) = @_;
- my $gid = ($group !~ /^\d+$/) ? getgrnam($group): $group;
+ my $gid = ($group !~ /^\d+$/) ? getgrnam($group) : $group;
 
  return unless($gid);
  return chown(-1,$gid,@files);
index d39c4773a9d6cc7fdb922c627cb82df40fddd6b7..18d437c49499369770e5ecabe642afd958a9e7f4 100644 (file)
@@ -204,11 +204,10 @@ sub file_name($)
 
 # mode_string()
 #
-# Convert a binary file mode string into a human
-# readable string (rwxr-x-r-x)
-# (also supports SetUID, SetGID and Sticky Bits)
+# Convert a file mode number into a human readable string (rwxr-x-r-x)
+# (also supports SetUID, SetGID and Sticky Bit)
 #
-# Params: Binary file mode string
+# Params: File mode number
 #
 # Return: Humand readable mode string
 

patrick-canterino.de