Hi,

while doing some development work on the search command (0.9.2.1) (<Opencapath>/lib/cmd/search) I found following code:
...
} elsif ( $dataType =~ /REQUEST/ ) {
$title .= gettext ("Requests Search");
} elsif ( $dataType =~ /REQUEST/ ) {
$title .= gettext ("Certificate Revocation Requests Search");
} ...


The second elsif mentioned here will never be met. I suppose it should rather be:

} elsif ( $dataType =~ /REQUEST/ ) {
  $title .= gettext ("Requests Search");
} elsif ( $dataType =~ /CRR/ ) {
  $title .= gettext ("Certificate Revocation Requests Search");
} ...

Is it ok to post such reports to this list? If not what is the preferred notification mechanism?

Cheers,

Peter


-- _______________________________________________________________________

Peter Gietz (CEO)
DAASI International GmbH phone: +49 7071 2970336
Wilhelmstr. 106 Fax: +49 7071 295114 D-72074 Tübingen email: [EMAIL PROTECTED]
Germany Web: www.daasi.de


Directory Applications for Advanced Security and Information Management
_______________________________________________________________________



-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r _______________________________________________
OpenCA-Devel mailing list
OpenCA-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openca-devel

Reply via email to