~mterry/ubuntu/natty/libofx/libofx.new-upstream-benoit-sru

« back to all changes in this revision

Viewing changes to lib/ofx_request_accountinfo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Saïvann Carignan
  • Date: 2008-02-06 17:25:16 UTC
  • mto: (3.1.2 lenny)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20080206172516-bnzxb29igye8um9h
Tags: upstream-0.9.0
Import upstream version 0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
char* libofx_request_accountinfo( const OfxFiLogin* login )
31
31
{
32
32
  OfxAccountInfoRequest strq( *login );
33
 
  string request = OfxHeader() + strq.Output();
 
33
  string request = OfxHeader(login->header_version) + strq.Output();
34
34
 
35
35
  unsigned size = request.size();
36
36
  char* result = (char*)malloc(size + 1);