]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix the ordering of variables in the memset() call
authorMarc G. Fournier <scrappy@hub.org>
Wed, 30 Oct 1996 21:17:39 +0000 (21:17 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Wed, 30 Oct 1996 21:17:39 +0000 (21:17 +0000)
Pointed out by: wieck@sapserv.debis.de

src/backend/tcop/postgres.c

index 5e3cfcb15b54dad2c81a1453747914ec95483873..5af1d362240c52f9b1a46de4e0c0511a9991fc79 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.4.2.1 1996/08/19 13:36:43 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.4.2.2 1996/10/30 21:17:39 scrappy Exp $
  *
  * NOTES
  *    this is the "main" module of the postgres backend and
@@ -1223,7 +1223,7 @@ PostgresMain(int argc, char *argv[])
      */
     if (IsUnderPostmaster == false) {
        puts("\nPOSTGRES backend interactive interface");
-       puts("$Revision: 1.4.2.1 $ $Date: 1996/08/19 13:36:43 $");
+       puts("$Revision: 1.4.2.2 $ $Date: 1996/10/30 21:17:39 $");
     }
     
     /* ----------------
@@ -1253,7 +1253,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);