From: Billy G. A. <bal...@us...> - 2003-10-06 19:40:27
|
Update of /cvsroot/pypgsql/pypgsql In directory sc8-pr-cvs1:/tmp/cvs-serv11243 Modified Files: pgversion.c Log Message: 06OCT2004 bga Corrected a typing error in the previous commit. Index: pgversion.c =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/pgversion.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** pgversion.c 6 Oct 2003 18:35:31 -0000 1.20 --- pgversion.c 6 Oct 2003 19:40:23 -0000 1.21 *************** *** 190,194 **** if ((pgstricmp(last, "alpha") == 0) || (pgstricmp(last, "beta") == 0)) ! return (error != 0); /* Allow for release canidates */ --- 190,194 ---- if ((pgstricmp(last, "alpha") == 0) || (pgstricmp(last, "beta") == 0)) ! return (errno != 0); /* Allow for release canidates */ |