Blame SOURCES/expect-5.45-mkpasswd-dash.patch

261060
diff -up expect5.45/example/mkpasswd.orig expect5.45/example/mkpasswd
261060
--- expect5.45/example/mkpasswd.orig	2011-03-16 13:23:23.125480017 +0100
261060
+++ expect5.45/example/mkpasswd	2011-03-16 13:24:08.739353139 +0100
261060
@@ -202,7 +202,8 @@ if {[info exists user]} {
261060
 	expect {
261060
 		"assword*:" {
261060
 			# some systems say "Password (again):"
261060
-			send "$password\r"
261060
+			send -- "$password\r"
261060
+			# "--" because of passwords beginning with dash
261060
 			exp_continue
261060
 		}
261060
 	}