Hello community, here is the log from the commit of package aqbanking checked in at Tue Dec 19 15:29:53 CET 2006. -------- --- GNOME/aqbanking/aqbanking.changes 2006-10-18 14:34:45.000000000 +0200 +++ /mounts/work_src_done/STABLE/aqbanking/aqbanking.changes 2006-12-16 12:35:27.000000000 +0100 @@ -1,0 +2,5 @@ +Sat Dec 16 12:35:11 CET 2006 - prusnak@suse.cz + +- fixed comparison with string literal (strcmp.patch) [#224464] + +------------------------------------------------------------------- New: ---- aqbanking-2.2.3-strcmp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aqbanking.spec ++++++ --- /var/tmp/diff_new_pack.q7s926/_old 2006-12-19 15:29:39.000000000 +0100 +++ /var/tmp/diff_new_pack.q7s926/_new 2006-12-19 15:29:39.000000000 +0100 @@ -13,13 +13,14 @@ Name: aqbanking BuildRequires: doxygen gtk2-devel gwenhywfar-devel kdelibs3-devel ktoblzcheck-devel libchipcard-devel libglade2-devel libofx-devel python-devel pyxml qt3-devel Version: 2.2.3 -Release: 1 +Release: 26 URL: http://www.aquamaniac.de/aqbanking/ Group: Productivity/Office/Finance -License: Other License(s), see package, GNU General Public License (GPL) - all versions +License: GNU General Public License (GPL), Other License(s), see package Summary: Library for Online Banking Functions and Financial Data Import and Export Source: %{name}-%{version}.tar.bz2 Patch: aqbanking-aqyellownet-libtool.patch +Patch1: %{name}-%{version}-strcmp.patch Autoreqprov: on Prereq: /sbin/ldconfig Prefix: %{_prefix} @@ -190,7 +191,7 @@ %package yellownet Summary: Library for Online Banking Functions and Financial Data Import/Export Group: Productivity/Office/Finance -License: Other License(s), see package +License: GNU General Public License (GPL), Other License(s), see package Requires: %{name} = %{version} %description yellownet @@ -224,6 +225,7 @@ %prep %setup %patch +%patch1 %build export CFLAGS="$RPM_OPT_FLAGS" @@ -443,6 +445,8 @@ %endif %changelog -n aqbanking +* Sat Dec 16 2006 - prusnak@suse.cz +- fixed comparison with string literal (strcmp.patch) [#224464] * Wed Oct 18 2006 - sbrabec@suse.cz - Updated to version 2.2.3: * Allows to setup iTAN HBCI accounts. @@ -457,17 +461,17 @@ is valid - AqOfxConnect: Fixed a bug in provider.c which could lead to a segfault - generic bankinfo plugin: -- implemented a mechanism to update bank info files via additional files -- Germany: Updated HBCI and bank info files (now reads new + - implemented a mechanism to update bank info files via additional files + - Germany: Updated HBCI and bank info files (now reads new format of Bundesbank files) -- Austria: -- updated BLZ file (now reads new, more extensive format) -- added OFX server information for BAWAG P.S.K and EasyBank + - Austria: + - updated BLZ file (now reads new, more extensive format) + - added OFX server information for BAWAG P.S.K and EasyBank - AqHBCI: -- removed functions AH_HBCI_HbciToUtf8() and AH_JobQueue_AddAsUtf8() because + - removed functions AH_HBCI_HbciToUtf8() and AH_JobQueue_AddAsUtf8() because they are no longer needed since the whole server response is transformed to UTF8 -> finally fixes Umlaut problems -- implemented iTAN process type 2: It now works against the test server, + - implemented iTAN process type 2: It now works against the test server, tomorrow I will have to test it against a real server - Fix rule srcdoc if directory was not existing * Wed Aug 23 2006 - schwab@suse.de ++++++ aqbanking-2.2.3-strcmp.patch ++++++ --- src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp +++ src/plugins/backends/aqhbci/tools/hbcixml/hbcixml.cpp @@ -266,12 +266,12 @@ i++; if (i>=argc) return -1; - if (argv[i]=="stderr") + if (strcmp(argv[i],"stderr")==0) args.logType=GWEN_LoggerTypeConsole; - else if (argv[i]=="file") + else if (strcmp(argv[i],"file")==0) args.logType=GWEN_LoggerTypeFile; #ifdef HAVE_SYSLOG_H - else if (argv[i]=="syslog") + else if (strcmp(argv[i],"syslog")==0) args.logType=GWEN_LoggerTypeSyslog; #endif else { ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de