Commit f1c95ed4 authored by Marc G. Fournier's avatar Marc G. Fournier

Fix memset() call, variables being passed in wrong order.

Pointed out by: wieck@sapserv.debis.de
parent da7f60c9
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.10 1996/10/13 04:49:57 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.11 1996/10/30 21:18:22 scrappy Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
......@@ -1265,7 +1265,7 @@ PostgresMain(int argc, char *argv[])
*/
if (IsUnderPostmaster == false) {
puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.10 $ $Date: 1996/10/13 04:49:57 $");
puts("$Revision: 1.11 $ $Date: 1996/10/30 21:18:22 $");
}
/* ----------------
......@@ -1295,7 +1295,7 @@ PostgresMain(int argc, char *argv[])
if (FD_ISSET(serverSock, &rmask)) {
/* new connection pending on our well-known port's socket */
newFE = (FrontEnd*) malloc (sizeof(FrontEnd));
memset(newFE, sizeof(FrontEnd),0);
memset(newFE, 0, sizeof(FrontEnd));
newFE->fn_connected = false;
newFE->fn_done = false;
newPort = &(newFE->fn_port);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment