Merge lp:~kamalmostafa/ubuntu/lucid/omhacks/fix-521164-ftbfs into lp:ubuntu/lucid/omhacks

Proposed by Kamal Mostafa
Status: Merged
Merged at revision: not available
Proposed branch: lp:~kamalmostafa/ubuntu/lucid/omhacks/fix-521164-ftbfs
Merge into: lp:ubuntu/lucid/omhacks
Diff against target: 41 lines (+10/-2)
3 files modified
debian/changelog (+6/-0)
debian/control (+2/-1)
omhacks/sysfs.c (+2/-1)
To merge this branch: bzr merge lp:~kamalmostafa/ubuntu/lucid/omhacks/fix-521164-ftbfs
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+19208@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2010-01-10 13:07:45 +0000
+++ debian/changelog 2010-02-12 22:18:15 +0000
@@ -1,3 +1,9 @@
1omhacks (0.8-1ubuntu1) lucid; urgency=low
2
3 * Fix FTBFS: sysfs.c open with O_CREAT needs 3 arguments (LP: #521164)
4
5 -- Kamal Mostafa <kamal@whence.com> Fri, 12 Feb 2010 12:40:17 -0800
6
1omhacks (0.8-1) unstable; urgency=low7omhacks (0.8-1) unstable; urgency=low
28
3 * New upstream release9 * New upstream release
410
=== modified file 'debian/control'
--- debian/control 2010-01-10 13:07:45 +0000
+++ debian/control 2010-02-12 22:18:15 +0000
@@ -1,7 +1,8 @@
1Source: omhacks1Source: omhacks
2Section: misc2Section: misc
3Priority: extra3Priority: extra
4Maintainer: Enrico Zini <enrico@debian.org>4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Enrico Zini <enrico@debian.org>
5Build-Depends: debhelper (>= 7), cmake (>= 2.6), help2man, linux-libc-dev6Build-Depends: debhelper (>= 7), cmake (>= 2.6), help2man, linux-libc-dev
6Standards-Version: 3.8.37Standards-Version: 3.8.3
7Homepage: http://git.debian.org/?p=pkg-fso/omhacks.git;a=blob;f=README8Homepage: http://git.debian.org/?p=pkg-fso/omhacks.git;a=blob;f=README
89
=== modified file 'omhacks/sysfs.c'
--- omhacks/sysfs.c 2010-01-10 13:07:45 +0000
+++ omhacks/sysfs.c 2010-02-12 22:18:15 +0000
@@ -191,7 +191,8 @@
191 size_t ssize = strlen(str);191 size_t ssize = strlen(str);
192 ssize_t count;192 ssize_t count;
193 int fd = -1;193 int fd = -1;
194 fd = open(pathname, O_WRONLY | O_CREAT);194 fd = open(pathname, O_WRONLY | O_CREAT,
195 S_IRUSR|S_IRGRP|S_IROTH|S_IWUSR|S_IWGRP|S_IWOTH);
195 if (fd < 0) return fd;196 if (fd < 0) return fd;
196 count = write(fd, str, ssize);197 count = write(fd, str, ssize);
197 if (count != ssize)198 if (count != ssize)

Subscribers

People subscribed via source and target branches

to all changes: