Description: fix bashisms in dump_disk example script
 Three conditionals in the examples/dump_on_cd_3/dump_disk are fixed to
 avoid bash-specific syntax.
Author: Chris Lamb <chris@chris-lamb.co.uk>
Reviewed-by: Bdale Garbee <bdale@gag.com>
Bug-Debian: http://bugs.debian.org/489570

--- dump-0.4b44.orig/examples/dump_on_cd_3/dump_disk
+++ dump-0.4b44/examples/dump_on_cd_3/dump_disk
@@ -55,14 +55,14 @@ write_output() {
 	while [ "$ANSWER" != "y" ] ; do
 		echo -n "Is the disk ready? (y/n) "
 		read  </dev/tty ANSWER
-		if [ "$ANSWER" == "y" ] ; then
+		if [ "$ANSWER" = "y" ] ; then
 			(${RECORD_BIN}${1}) &
 			return 0
-		elif [ "$ANSWER" == "n" ] ; then
+		elif [ "$ANSWER" = "n" ] ; then
 			EXIT=""
 			echo -n "Do you really want to exit? (y/n) "
 			read </dev/tty EXIT
-			if [ "$EXIT" == "y" ] ; then
+			if [ "$EXIT" = "y" ] ; then
 				return 1
 			fi
 		fi
