]> git.p6c8.net - devedit.git/commitdiff
- There is no need to load the POSIX module twice
authorpcanterino <>
Sun, 31 Oct 2004 09:31:17 +0000 (09:31 +0000)
committerpcanterino <>
Sun, 31 Oct 2004 09:31:17 +0000 (09:31 +0000)
- Dev-Editor also shows the current umask of the process in the about dialogue

modules/Command.pm

index 4e7e365fb409cf938df686984ae76f9eb6e37c08..117d39cafd69d47506aa9399d7e1c1e8243c81ce 100644 (file)
@@ -6,7 +6,7 @@ package Command;
 # Execute Dev-Editor's commands
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-10-30
+# Last modified: 2004-10-31
 #
 
 use strict;
@@ -910,8 +910,6 @@ sub exec_about($$)
   # Dev-Editor is running on a system which allows users and groups
   # So we display the user and the group of our process
 
-  require POSIX;
-
   my $uid = POSIX::getuid;
   my $gid = POSIX::getgid;
 
@@ -926,6 +924,10 @@ sub exec_about($$)
 
   $tpl->fillin("USER",getpwuid($uid));
   $tpl->fillin("GROUP",getgrgid($gid));
+
+  # Process umask
+
+  $tpl->fillin("UMASK",sprintf("%04o",umask));
  }
  else
  {

patrick-canterino.de