Re: [7.3devl] Using PGPASSWORDFILE with psql requires -U - Mailing list pgsql-hackers

From Alvaro Herrera
Subject Re: [7.3devl] Using PGPASSWORDFILE with psql requires -U
Date
Msg-id Pine.LNX.4.44.0208300013360.22147-100000@cm-lcon1-46-187.cm.vtr.net
Whole thread Raw
In response to Re: [7.3devl] Using PGPASSWORDFILE with psql requires -U  ("Dann Corbit" <DCorbit@connx.com>)
List pgsql-hackers
Dann Corbit dijo: 

> > Alvaro Herrera <alvherre@atentus.com> writes:
> > > !         ret=(char *)malloc(sizeof(char)*strlen(t));
> > > !         strncpy(ret, t, strlen(t));
> > >
> > > !         ret=(char *)malloc(sizeof(char)*(strlen(t)+1));
> > > !         strncpy(ret, t, strlen(t)+1);
> > 
> > What have you got against strdup() ?
> 
> The strdup() function is non-standard, and need not exist in a C
> implementation.

Actually I have nothing against strdup(), and I think I have seen it in
Pg source.  I just didn't think about it ;-)

Feel free to change it if you want...

-- 
Alvaro Herrera (<alvherre[a]atentus.com>)
One man's impedance mismatch is another man's layer of abstraction.
(Lincoln Yeoh)



pgsql-hackers by date:

Previous
From: "Dann Corbit"
Date:
Subject: Re: [7.3devl] Using PGPASSWORDFILE with psql requires -U
Next
From: Tom Lane
Date:
Subject: Re: [7.3devl] Using PGPASSWORDFILE with psql requires -U