2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00

[4237] Addressed review comments

AUTHORS
    Added pull submitter,https://github.com/isc-projects/kea/pull/16,
    Sebastien Couture.

src/bin/admin/scripts/mysql/dhcpdb_create.mysql
    Fixed "FROm"
This commit is contained in:
Thomas Markwalder 2015-12-17 09:05:32 -05:00
parent 36e5204eb2
commit c112be7c66
2 changed files with 4 additions and 1 deletions

View File

@ -87,6 +87,9 @@ We have received the following contributions:
- Jinmei Tatuya
2015-10: Pkt4o6 class improvements
- Sebastien Couture, Ubity Inc
2015-12: Fixes to MySQL schema creation
Kea uses log4cplus (http://sourceforge.net/projects/log4cplus/) for logging,
Boost (http://www.boost.org/) library for almost everything, and can use Botan
(http://botan.randombit.net/) or OpenSSL (https://www.openssl.org/) for

View File

@ -342,7 +342,7 @@ SELECT
l.fqdn_rev,
l.hostname,
s.name
FROm
FROM
lease4 l
LEFT OUTER JOIN lease_state s on (l.state = s.state)
ORDER BY l.address;