Merge pull request #308 from withmorten/master

Two small fixes (README.md and recorder.c)
This commit is contained in:
JP Mens 2019-06-22 21:39:38 +02:00 committed by GitHub
commit 9a31a980de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -181,7 +181,7 @@ On Ubuntu:
```
sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa
sudo apt-get update
sudo apt-get install libmosquitto-dev libcurl3 libcurl4-openssl-dev libconfig-dev
sudo apt-get install libmosquitto-dev libcurl3 libcurl4-openssl-dev libconfig-dev liblmdb-dev
```
#### Building

View File

@ -1191,11 +1191,12 @@ int main(int argc, char **argv)
{
#if WITH_MQTT
struct mosquitto *mosq = NULL;
UT_string *clientid, *uviewsdir;
UT_string *clientid;
int rc, i;
struct utsname uts;
bool do_tls = false;
#endif /* WITH_MQTT */
UT_string *uviewsdir;
char err[1024], *p;
char *logfacility = "local0";
#if WITH_MQTT