Bug TD-45
- TD-45 Fix preprocessor define. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
committed by
Paul Beckingham
parent
39efcf11bd
commit
4ae8431f96
1
AUTHORS
1
AUTHORS
@@ -100,6 +100,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
|||||||
Natanael Copa
|
Natanael Copa
|
||||||
Marton Suranyi
|
Marton Suranyi
|
||||||
Nicolas Appriou
|
Nicolas Appriou
|
||||||
|
Jochen Sprickerhof
|
||||||
|
|
||||||
Thanks to the following, who submitted detailed bug reports and excellent
|
Thanks to the following, who submitted detailed bug reports and excellent
|
||||||
suggestions:
|
suggestions:
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ Features
|
|||||||
Bugs
|
Bugs
|
||||||
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
|
- TD-42 Cannot compile taskd - GNUTLS_VERSION undefined in diag.cpp (thanks
|
||||||
to Michele Vetturi).
|
to Michele Vetturi).
|
||||||
|
- TD-45 Fix preprocessor define (thanks to Jochen Sprickerhof).
|
||||||
- TW-1282 incorrect URLs in man task-sync (thanks to Jeremiah Marks).
|
- TW-1282 incorrect URLs in man task-sync (thanks to Jeremiah Marks).
|
||||||
- #1511 sync init crashes if client certification file is empty or invalid
|
- #1511 sync init crashes if client certification file is empty or invalid
|
||||||
(thanks to Marton Suranyi).
|
(thanks to Marton Suranyi).
|
||||||
|
|||||||
@@ -1080,7 +1080,6 @@ void TDB2::show_diff (
|
|||||||
<< view.render ()
|
<< view.render ()
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ int CmdDiagnostics::execute (std::string& output)
|
|||||||
#ifdef HAVE_LIBGNUTLS
|
#ifdef HAVE_LIBGNUTLS
|
||||||
#ifdef GNUTLS_VERSION
|
#ifdef GNUTLS_VERSION
|
||||||
<< GNUTLS_VERSION
|
<< GNUTLS_VERSION
|
||||||
#elif LIBGNUTLS_VERSION
|
#elif defined LIBGNUTLS_VERSION
|
||||||
<< LIBGNUTLS_VERSION
|
<< LIBGNUTLS_VERSION
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
|
|||||||
Reference in New Issue
Block a user