Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
7edc41b8
Commit
7edc41b8
authored
Jun 20, 2015
by
Francis Dupont
Browse files
[3882a] Added a comma before library
parent
be77596d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/dhcpsrv/mysql_lease_mgr.cc
View file @
7edc41b8
...
...
@@ -1270,7 +1270,7 @@ MySqlLeaseMgr::getDBVersion() {
std
::
stringstream
tmp
;
tmp
<<
"MySQL backend "
<<
CURRENT_VERSION_VERSION
;
tmp
<<
"."
<<
CURRENT_VERSION_MINOR
;
tmp
<<
" library "
<<
mysql_get_client_info
();
tmp
<<
"
,
library "
<<
mysql_get_client_info
();
return
(
tmp
.
str
());
}
...
...
src/lib/dhcpsrv/pgsql_lease_mgr.cc
View file @
7edc41b8
...
...
@@ -970,7 +970,7 @@ PgSqlLeaseMgr::getDBVersion() {
std
::
stringstream
tmp
;
tmp
<<
"PostgreSQL backend "
<<
PG_CURRENT_VERSION
;
tmp
<<
"."
<<
PG_CURRENT_MINOR
;
tmp
<<
" library "
<<
PQlibVersion
();
tmp
<<
"
,
library "
<<
PQlibVersion
();
return
(
tmp
.
str
());
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment