From 3df6fb74be57820abbf8beff9ca1cfdd2d3fced2 Mon Sep 17 00:00:00 2001 From: Mr-Dave Date: Fri, 26 Apr 2024 19:19:52 -0600 Subject: [PATCH] Fix netcam log message camera name --- src/netcam.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netcam.hpp b/src/netcam.hpp index 75ff84cd..490bdc7c 100644 --- a/src/netcam.hpp +++ b/src/netcam.hpp @@ -106,7 +106,7 @@ struct ctx_netcam { bool passthrough; /* Boolean for whether we are doing pass-through processing */ char *path; /* The connection string to use for the camera */ - char service[5]; /* String specifying the type of camera http, rtsp, v4l2 */ + char service[6]; /* String specifying the type of camera http, rtsp, v4l2 */ char camera_name[PATH_MAX]; /* The name of the camera as provided in the config file */ char cameratype[30]; /* String specifying Normal or High for use in logging */ ctx_imgsize imgsize; /* The image size parameters */