Package: g15daemon Version: 1.9.5.3-7 Severity: important Tags: patch Justification: fails to build from source User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu karmic ubuntu-patch
In Ubuntu, we've applied the attached patch to achieve the following: * [FTBFS] open() needs mode if O_CREAT in utility_funcs.c for GCC 4.4 (LP: #493019) We thought you might be interested in doing the same. -- System Information: Debian Release: squeeze/sid APT prefers karmic-updates APT policy: (500, 'karmic-updates'), (500, 'karmic-security'), (500, 'karmic') Architecture: i386 (i686) Kernel: Linux 2.6.31-15-generic (SMP w/2 CPU cores) Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -u g15daemon-1.9.5.3/debian/changelog g15daemon-1.9.5.3/debian/changelog diff -u g15daemon-1.9.5.3/g15daemon/utility_funcs.c g15daemon-1.9.5.3/g15daemon/utility_funcs.c --- g15daemon-1.9.5.3/g15daemon/utility_funcs.c +++ g15daemon-1.9.5.3/g15daemon/utility_funcs.c @@ -356,7 +356,7 @@ config_items_t * item=NULL; char line[1024]; - config_fd = open(filename,O_CREAT|O_RDWR|O_TRUNC); + config_fd = open(filename,O_CREAT|O_RDWR|O_TRUNC, 0644); if(config_fd){ snprintf(line,1024,"# G15Daemon Configuration File\n# any items entered before a [section] header\n# will be in the Global config space\n# comments you wish to keep should start with a semicolon';'\n"); write(config_fd,line,strlen(line));