1
0
mirror of https://github.com/Yubico/yubikey-ksm.git synced 2025-02-21 15:54:17 +01:00

Order by serial number first, makes more sense.

This commit is contained in:
Simon Josefsson 2011-01-14 13:45:22 +00:00
parent e128f2b782
commit 5152964f13

View File

@ -1,7 +1,7 @@
#!/usr/bin/perl
# Written by Simon Josefsson <simon@josefsson.org>.
# Copyright (c) 2010 Yubico AB
# Copyright (c) 2010, 2011 Yubico AB
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -82,7 +82,7 @@ if ($#ARGV>=0) {
my $dbh = DBI->connect($db, $dbuser, $dbpasswd, {'RaiseError' => 1});
my $sth = $dbh->prepare ('SELECT serialnr, publicname, internalname, aeskey '.
'FROM yubikeys '.
'ORDER BY publicname')
'ORDER BY serialnr, publicname')
or die "Couldn't prepare statement: " . $dbh->errstr;
$sth->execute()
or die "Couldn't execute statement: " . $sth->errstr;