This commit is contained in:
leif 1998-08-13 09:28:05 +00:00
Родитель b9056b2c1b
Коммит d9539605d8
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,6 +1,6 @@
#!/usr/bin/perl5
#############################################################################
# $Id: psoftsync.pl,v 1.3 1998-08-13 09:11:50 leif Exp $
# $Id: psoftsync.pl,v 1.4 1998-08-13 09:27:53 leif Exp $
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (the "License"); you may not use this file except in
@ -329,7 +329,7 @@ while ($entry)
}
$conn->update($entry) if ($changed && ! $opt_n);
$entry = $conn->entry();
$entry = $conn->nextEntry();
}

Просмотреть файл

@ -1,6 +1,6 @@
#!/usr/bin/perl5
#############################################################################
# $Id: qsearch.pl,v 1.6 1998-08-13 09:11:37 leif Exp $
# $Id: qsearch.pl,v 1.7 1998-08-13 09:28:05 leif Exp $
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (the "License"); you may not use this file except in
@ -83,7 +83,7 @@ foreach $search (@srch)
while($entry)
{
$entry->printLDIF();
$entry = $conn->entry;
$entry = $conn->nextEntry;
}
print "\n";
}