diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-09-06 05:29:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-09-06 05:29:07 +0000 |
commit | df9a2f03eb65c6f9251cef479caabeadab726069 (patch) | |
tree | c99e10ed566ae9008d50a818380d1f60bf4fcf7d /sys-auth/bioapi/files | |
parent | Version bump <http://my.opera.com/desktopteam/blog/2008/09/05/9-60-beta-1-rc>. (diff) | |
download | gentoo-2-df9a2f03eb65c6f9251cef479caabeadab726069.tar.gz gentoo-2-df9a2f03eb65c6f9251cef479caabeadab726069.tar.bz2 gentoo-2-df9a2f03eb65c6f9251cef479caabeadab726069.zip |
Apply fix by kouyu for missing return value #236654.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'sys-auth/bioapi/files')
-rw-r--r-- | sys-auth/bioapi/files/bioapi-1.2.3-enroll-ret.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys-auth/bioapi/files/bioapi-1.2.3-enroll-ret.patch b/sys-auth/bioapi/files/bioapi-1.2.3-enroll-ret.patch new file mode 100644 index 000000000000..e077c135d63f --- /dev/null +++ b/sys-auth/bioapi/files/bioapi-1.2.3-enroll-ret.patch @@ -0,0 +1,16 @@ +http://bugs.gentoo.org/236654 + +make sure we return 0 when things work + +patch by kouyu + +--- bioapi-linux/apps/NonGUI_Sample/main.c ++++ bioapi-linux/apps/NonGUI_Sample/main.c +@@ -234,6 +234,7 @@ + } + + OutputToFile(userName, EnrolledTemplate); ++ return 0; + } + } + |