]> git.p6c8.net - devedit.git/commitdiff
Changed some comments
authorpcanterino <>
Tue, 5 Oct 2004 18:05:26 +0000 (18:05 +0000)
committerpcanterino <>
Tue, 5 Oct 2004 18:05:26 +0000 (18:05 +0000)
devedit.pl
modules/File/Access.pm
modules/Tool.pm

index cf4ea19734299faf00526f7441aead29e25edd71..9733c9d29f87843a82d577415bfe424954095d03 100644 (file)
@@ -80,7 +80,7 @@ if($newfile ne '' && $newfile !~ /^\s+$/)
  $new_virtual .= $file;
 }
 
  $new_virtual .= $file;
 }
 
-# This check has to be performed first, or abs_path() will be confused
+# This check has to be performed first or abs_path() will be confused
 
 if(-e clean_path($config->{'fileroot'}."/".$file))
 {
 
 if(-e clean_path($config->{'fileroot'}."/".$file))
 {
index 3bfd50db657431210d5560456a6ca246eaea9b4f..c649a2caa1d3692f835e0edb192b2bddb76f3043 100644 (file)
@@ -31,7 +31,7 @@ use base qw(Exporter);
 #
 # Change the group of files or directories
 #
 #
 # Change the group of files or directories
 #
-# Params: 1. Group name
+# Params: 1. Group name or group ID
 #         2. List of files
 #
 # Return: Number of files group successfully changed
 #         2. List of files
 #
 # Return: Number of files group successfully changed
@@ -94,7 +94,11 @@ sub dir_read($)
 
 # file_create()
 #
 
 # file_create()
 #
-# Create a file
+# Create a file, but only if it doesn't already exist
+#
+# (I wanted to use O_EXCL for this, but `perldoc -f sysopen`
+# doesn't say that it is available on every system - so I
+# created this workaround using O_RDONLY and O_CREAT)
 #
 # Params: File to create
 #
 #
 # Params: File to create
 #
index 18d437c49499369770e5ecabe642afd958a9e7f4..6fbf8e05277ee7e9a54eaf7700530042979ff541 100644 (file)
@@ -209,7 +209,7 @@ sub file_name($)
 #
 # Params: File mode number
 #
 #
 # Params: File mode number
 #
-# Return: Humand readable mode string
+# Return: Human readable mode string
 
 sub mode_string($)
 {
 
 sub mode_string($)
 {

patrick-canterino.de