Browse Source

Ticket 48783 - Fix ns-accountstatus.pl syntax error

Bug Description:  A missing ; and new line was found in ns-accountstatus.pl
in the --help message.

Fix Description:  Add the correct ); stanza.

https://fedorahosted.org/389/ticket/48783

Author: Andrey Cherepanov

Review by: wibrown
Andrey Cherepanov 9 years ago
parent
commit
10787a0bb0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ldap/admin/src/scripts/ns-accountstatus.pl.in

+ 2 - 2
ldap/admin/src/scripts/ns-accountstatus.pl.in

@@ -30,7 +30,7 @@ my $verbose = 0;
 sub usage
 {
     print (STDERR "ns-accountstatus.pl [-Z serverID] [-D rootdn] { -w password | -w - | -j filename }\n");
-    print (STDERR "                    [-p port] [-h host] [-P protocol] {-I DN | -b basedn -f filter [-s scope]}"
+    print (STDERR "                    [-p port] [-h host] [-P protocol] {-I DN | -b basedn -f filter [-s scope]}\n");
     print (STDERR "                    [-i] [-g seconds]\n\n");
     print (STDERR "May be used to get the status a user or a domain of users\n\n");
     print (STDERR "Arguments:\n");
@@ -1035,4 +1035,4 @@ for(my $i = 0; $i <= $#entries; $i++){
         }
         exit 103;
     }
-}
+}