Browse Source

[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"
Thomas Markwalder 9 years ago
parent
commit
c112be7c66
2 changed files with 4 additions and 1 deletions
  1. 3 0
      AUTHORS
  2. 1 1
      src/bin/admin/scripts/mysql/dhcpdb_create.mysql

+ 3 - 0
AUTHORS

@@ -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

+ 1 - 1
src/bin/admin/scripts/mysql/dhcpdb_create.mysql

@@ -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;