]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - adduser/rmuser.perl
o Rename "namespace" argument to "attrnamespace" as namespace is a C++
[pw-darwin.git] / adduser / rmuser.perl
index b3f140697083b15b911ac506dc5768163b9b83d9..c5c9b7486fc82c858967375b8868d67ec5efe747 100644 (file)
@@ -117,7 +117,8 @@ if ($#ARGV == 0) {
     $login_name = &get_login_name;
 }
 
-($name, $password, $uid, $gid, $change, $class, $gecos, $home_dir, $shell) = (getpwnam("$login_name"));
+($name, $password, $uid, $gid, $change, $class, $gecos, $home_dir, $shell) =
+    (getpwnam("$login_name"));
 
 if ($?) {
     print STDERR "${whoami}: Error: User ${login_name} not in password database\n";
@@ -316,7 +317,7 @@ sub update_passwd_file {
        print STDERR "\n${whoami}: Warning: couldn't set mode of $new_passwd_file to 0600 ($!)\n\tcontinuing, but please check mode of /etc/master.passwd!\n";
     $skipped = 0;
     while (<MASTER_PW>) {
-       if (not /^$login_name\:/io) {
+       if (not /^\Q$login_name:/io) {
            print NEW_PW;
        } else {
            print STDERR "Dropped entry for $login_name\n" if $debug;