diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-16 23:12:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-16 23:12:39 +0000 |
commit | 05933f4ec1a57a013b72a18589acd6cfe7f427ab (patch) | |
tree | 7b1ceeddd5d20583d73b56b44249eaf11af69722 /src | |
parent | e1e110228f8a2a42e48be7ee0735496413b06946 (diff) | |
download | postgresql-05933f4ec1a57a013b72a18589acd6cfe7f427ab.tar.gz postgresql-05933f4ec1a57a013b72a18589acd6cfe7f427ab.zip |
Add back improperly removed #include for utils/trace.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/libpq/pqcomm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index 9e6b5e08820..7accb56f574 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -28,7 +28,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.c,v 1.76 1999/07/16 04:59:03 momjian Exp $ + * $Id: pqcomm.c,v 1.77 1999/07/16 23:12:39 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -81,8 +81,10 @@ #endif #include "libpq/libpq.h" +#include "utils/trace.h" #include "miscadmin.h" + #ifndef SOMAXCONN #define SOMAXCONN 5 /* from Linux listen(2) man page */ #endif /* SOMAXCONN */ |