diff options
Diffstat (limited to 'src/plugins/influxdb-writer.c')
-rw-r--r-- | src/plugins/influxdb-writer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/influxdb-writer.c b/src/plugins/influxdb-writer.c index 2856865..c4929f8 100644 --- a/src/plugins/influxdb-writer.c +++ b/src/plugins/influxdb-writer.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 "IoT.bzh" + * Copyright (C) 2018-2019 "IoT.bzh" * Author "Romain Forlot" <romain.forlot@iot.bzh> * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -28,7 +28,7 @@ void influxdb_write_curl_cb(void *closure, int status, CURL *curl, const char *r switch(rep_code) { case 204: AFB_REQ_DEBUG(request, "Request correctly written"); - afb_req_success(request, NULL, "Request has been successfully writen"); + afb_req_success(request, NULL, "Request has been successfully written"); break; case 400: afb_req_fail(request, "Bad request", result); |