Comment 0 for bug 281518

Revision history for this message
Antonio Salazar (asalazarmx) wrote :

Binary package hint: gdm

I'm testing Ubuntu 8.10. The package currently installed is gdm 2.20.8-0ubuntu2.

The problem lies in the /usr/lib/gdmplay script, which uses an unquoted file name.

Original source:
#!/bin/sh
/usr/bin/aplay -q -N $@ 2> /dev/null

Changed source:
#!/bin/sh
/usr/bin/aplay -q -N "$@" 2> /dev/null

I tested the change, and now it plays all sounds correctly. I'd hope I attached the patch correctly.