bug in EN_set_odbc3 macro

Поиск
Список
Период
Сортировка
От tomas@nocrew.org (Tomas Skäre)
Тема bug in EN_set_odbc3 macro
Дата
Msg-id 80u15iwwr0.fsf@junk.nocrew.org
обсуждение исходный текст
Ответы Re: bug in EN_set_odbc3 macro  ("Hiroshi Inoue" <inoue@tpf.co.jp>)
Список pgsql-odbc
Hi,

I found that the EN_set_odbc3 macro in environ.h seems to be
wrong. It's defined as:

#define EN_set_odbc3(env) (env->flag &= EN_OV_ODBC2)

There should probably be a ~ in there too:

#define EN_set_odbc3(env) (env->flag &= ~EN_OV_ODBC2)


Greetings,

Tomas

В списке pgsql-odbc по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Access, ODBC and "other users"
Следующее
От: "Hiroshi Inoue"
Дата:
Сообщение: Re: bug in EN_set_odbc3 macro