Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/guysoft/OctoPi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGina Häußge <gina@octoprint.org>2021-06-29 15:38:43 +0300
committerGina Häußge <gina@octoprint.org>2021-06-29 15:38:43 +0300
commit3dc1381937922f59fe46c9ddd75d1a6278841b55 (patch)
tree3f7824716aa9433b6e0466b36a0f19b646a43032
parent1a00e6ec9b586760080f456c5ff4692749581b40 (diff)
✏️ Fix some typos
-rwxr-xr-xsrc/modules/octopi/filesystem/home/root/bin/webcamd6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/octopi/filesystem/home/root/bin/webcamd b/src/modules/octopi/filesystem/home/root/bin/webcamd
index c372e14..2af5a79 100755
--- a/src/modules/octopi/filesystem/home/root/bin/webcamd
+++ b/src/modules/octopi/filesystem/home/root/bin/webcamd
@@ -73,7 +73,7 @@ for cfg_file in ${cfg_files[@]}; do
echo "raspi options: $camera_raspi_options"
echo "http options: -w $camera_http_webroot $camera_http_options"
echo ""
- echo "Explicitly USB device: $extracted_device"
+ echo "Explicitly set USB device: $extracted_device"
echo "-----------------------------------------------"
echo ""
@@ -251,7 +251,7 @@ while true; do
usb_device_path=`readlink -f ${camera_usb_device}`
if containsString "$usb_device_path" "${array_camera_device[@]}"; then
if [[ "auto" != ${scan_mode} ]]; then
- array_camera_device[${i}]="alredy_in_use"
+ array_camera_device[${i}]="already_in_use"
echo "config file='$camera_config':Video device already in use."
continue
fi
@@ -286,7 +286,7 @@ while true; do
video_device="raspi"
if containsString "$video_device" "${array_camera_device[@]}"; then
if [[ "auto" != ${scan_mode} ]]; then
- array_camera_device[${i}]="alredy_in_use"
+ array_camera_device[${i}]="already_in_use"
echo "config file='$camera_config':RasPiCam device already in use."
fi
elif containsString "$video_device" "${video_devices[@]}"; then