Index: /issm/trunk-jpl/externalpackages/dyson/ldap.pl
===================================================================
--- /issm/trunk-jpl/externalpackages/dyson/ldap.pl	(revision 11555)
+++ /issm/trunk-jpl/externalpackages/dyson/ldap.pl	(revision 11556)
@@ -7,11 +7,11 @@
 $bn="jplbadgenumber"; $txt="$bn".".txt"; $db="jplusers.db";                # Initialize values
 #
-system(`$ldb -x -h $lds -b $ou uid=* filter $bn > $txt`);                     # Execute LDAPsearch, write to file
+system(`$ldb -x -h $lds -b $ou uid=* uid > $txt`);                         # Execute LDAPsearch, write to file
 #
 open(I,"<$txt");                                                           # Open input file handle
   open(O,">badges.tmp");                                                   # Open output file handle
     while (<I>) { chomp($_);                                               # Spool through input file
-      if ($_=~"^uid=") {                                                   # If line begins with UID value,
-        $_=~s/uid=//; $_=~s/,(.*)$//; $_=~s/\n//;                          #   strip line of extraneous data
+      if ($_ =~ "^uid: ") {                                                # If line begins with UID value,
+        $_=~s/uid: //; $_=~s/,(.*)$//; $_=~s/\n//;                         #   strip line of extraneous data
         if (!($_=~/^\d\d\d\d\d\d/)) { print O "$_\n"; }                    # If UID is non-numeric, print output
       }                                                                    # Close condition
