Disable the unreliable smsd-dbi-sqlite3 test The smsd-dbi-sqlite3 test fails randomly because it is very sensitive to timing and host's performance. Disable it to obtain saner build/test results. .
fix buffer overflow in GSM_Backup.Creator GSM_Backup contains an 80-char 'Creator' field which it tries to fill with the contents of 'uname -a'. Recent compilers rightly detect a buffer overflow (on Ubuntu, this output is 120 characters long and it's not the only thing expected to go in this field). Avoid use of the never-safe strcat().