~ubuntu-branches/debian/sid/unixodbc/sid

« back to all changes in this revision

Viewing changes to odbcinst/SQLPostInstallerError.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2004-10-15 03:07:52 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041015030752-dzw4vhxlgycz3woj
Tags: 2.2.4-11
Brown paper bag me: conflicts do not write themselves just because
you add a line to the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
RETCODE SQLPostInstallerError(  DWORD   nErrorCode,
22
22
                                                                LPCSTR  szErrorMsg )
23
23
{
24
 
        if ( nErrorCode < 0 || nErrorCode > ODBC_ERROR_OUTPUT_STRING_TRUNCATED )
 
24
        if ( nErrorCode > ODBC_ERROR_OUTPUT_STRING_TRUNCATED )
25
25
                return SQL_ERROR;
26
26
 
27
27
    inst_logPushMsg( __FILE__, __FILE__, __LINE__, LOG_CRITICAL, nErrorCode, (char *)szErrorMsg );