~siretart/gnucash/ubuntu-fullsource

« back to all changes in this revision

Viewing changes to src/import-export/hbci/gnc-hbci-utils.c

  • Committer: Reinhard Tartler
  • Date: 2008-08-03 07:27:37 UTC
  • mto: (2.1.1 debian)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: siretart@tauware.de-20080803072737-tnidfmnpamgavfk5
import gnucash_2.2.6.orig.tar.gz

The original tarball had the md5sum: 7ac08c5e2076c9b4d44c785d21bc1a2f

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
  if (verbose) {
263
263
    g_warning("gnc_hbci_debug_outboxjob: Job status: %s", AB_Job_Status2Char(AB_Job_GetStatus(job)));
264
264
 
265
 
    g_warning(", result: %s", AB_Job_GetResultText(job));
 
265
    g_warning(", result: %s", AB_Job_GetResultText(job) ? AB_Job_GetResultText(job) : "(none)");
266
266
    g_warning("\n");
267
267
  }
268
268
 
280
280
    if (!verbose)
281
281
      g_warning("gnc_hbci_debug_outboxjob: Job %s had an error: %s\n",
282
282
             AB_Job_Type2Char(AB_Job_GetType(job)),
283
 
             AB_Job_GetResultText(job));
 
283
             AB_Job_GetResultText(job) ? AB_Job_GetResultText(job) : "(none)");
284
284
    cause = 9000;
285
285
  } else {
286
286
    cause = 0;