98N/A--- brltty-3.8.orig/Programs/Makefile.in 2005-08-27 05:33:11.000000000 +0100
98N/A+++ brltty-3.8/Programs/Makefile.in 2005-10-28 08:17:12.412662000 +0100
98N/A@@ -551,7 +551,7 @@
98N/A install-api-key:
98N/A file=$(sysconfdir)/$(API_AUTHFILE) && \
98N/A if test ! -f $$file -a -w $(sysconfdir) -a -z "$(INSTALL_ROOT)"; \
98N/A- then umask 077 && $(SRC_DIR)/brltty-genkey $$file; fi
98N/A+ then umask 077 && (dd if=/dev/urandom bs=16 count=1 2>/dev/null | perl -e 'while(<>){print unpack( "H*", $$_),"\n";}') >$$file; fi
98N/A
98N/A ###############################################################################
98N/A
98N/A--- brltty-3.8.orig/Programs/tunetest.c 2005-08-16 22:36:49.000000000 +0100
98N/A+++ brltty-3.8/Programs/tunetest.c 2005-10-28 08:24:37.711867000 +0100
98N/A@@ -206,14 +206,16 @@
98N/A }
98N/A
98N/A {
98N/A- TuneElement te = TUNE_NOTE(duration, note);
98N/A- *(element++) = te;
98N/A+ element->duration = duration; /* TUNE_NOTE(duration, note); */
98N/A+ element->note = note;
98N/A+ element++;
98N/A }
98N/A }
98N/A
98N/A {
98N/A- TuneElement te = TUNE_STOP();
98N/A- *element = te;
98N/A+ element->duration = 0; /* TUNE_STOP(); */
98N/A+ element->note = 0;
98N/A+
98N/A }
98N/A
98N/A if (!setTuneDevice(tuneDevice)) {
98N/A