Re: [BUGS] More SSL questions..

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [BUGS] More SSL questions..
Дата
Msg-id 18829.1105038850@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [BUGS] More SSL questions..  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: [BUGS] More SSL questions..  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers-win32
Bruce Momjian <pgman@candle.pha.pa.us> writes:
> Magnus, where are you on getting a patch to
> fe-connect.c::pqGetHomeDirectory() for Win32?  Right now the code is
> reading USERPROFILE or HOME.

Nope; as of CVS tip it's

#else
    char        tmppath[MAX_PATH];

    ZeroMemory(tmppath, sizeof(tmppath));
    if (!SHGetSpecialFolderPath(NULL, tmppath, CSIDL_APPDATA, FALSE))
        return false;
    snprintf(ret_path, MAXPGPATH, "%s/postgresql", tmppath);
    return true;
#endif

This needs to be tested of course.

            regards, tom lane

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [BUGS] More SSL questions..
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [BUGS] More SSL questions..