diff --git a/wayblue-fix-89.sh b/wayblue-fix-89.sh
index e293621..5ac3796 100755
--- a/wayblue-fix-89.sh
+++ b/wayblue-fix-89.sh
@@ -41,7 +41,7 @@ for file in /etc/shadow /etc/gshadow; do
 	# Prelim checks succeeded, move forward
 	echo "Parsing $file for junk"
 	# Read each line in the file to iterate over it
-	while read line; do
+	while read -r line; do
 		# This should never happen, but if for some reason we get an empty line,
 		# continue
 		[ -z "$line" ] && continue