Does this make sense:

Поиск
Список
Период
Сортировка
От The Hermit Hacker
Тема Does this make sense:
Дата
Msg-id Pine.BSF.4.05.9812140220060.6029-100000@thelab.hub.org
обсуждение исходный текст
Ответы Re: [HACKERS] Does this make sense:  (Bruce Momjian <maillist@candle.pha.pa.us>)
Re: [HACKERS] Does this make sense:  (geek+@cmu.edu)
Список pgsql-hackers
char *  
crypt_getpwdfilename()
{     static char *pfnam = NULL;  if (!pfnam) {    int bufsize;   bufsize = strlen(DataDir) + strlen(CRYPT_PWD_FILE) +
2;  pfnam = (char *) palloc(bufsize);    spprintf(pfnam, bufsize, "%s/%s", DataDir, CRYPT_PWD_FILE); }  return pfnam;
 
}

Why the check for '!ipfnam'?  Seems useless since we are setting it to
NULL the line before...no?

Marc G. Fournier                                
Systems Administrator @ hub.org 
primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org 



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

Предыдущее
От: "Thomas G. Lockhart"
Дата:
Сообщение: Re: [HACKERS] problem compiling with egcs 1.1.1
Следующее
От: The Hermit Hacker
Дата:
Сообщение: Re: [HACKERS] catalog/heap.c...