diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-03-20 15:07:05 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-03-20 15:07:05 +0000 |
commit | 3b7e2b140e48ba798b29835e4c86175133e27793 (patch) | |
tree | edd4950f24a5a91d496c7d1fc507935439e4613b /src | |
parent | a323ede2802956f115d71599514fbc01f2575dee (diff) | |
download | postgresql-3b7e2b140e48ba798b29835e4c86175133e27793.tar.gz postgresql-3b7e2b140e48ba798b29835e4c86175133e27793.zip |
Update comment that pgNotify.be_pid is pid of the notifying server process.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/libpq-fe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-fe.h b/src/interfaces/libpq/libpq-fe.h index bbf74497297..36a601a7d7f 100644 --- a/src/interfaces/libpq/libpq-fe.h +++ b/src/interfaces/libpq/libpq-fe.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.125 2006/03/05 15:59:09 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.126 2006/03/20 15:07:05 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -131,7 +131,7 @@ typedef struct pg_cancel PGcancel; typedef struct pgNotify { char *relname; /* notification condition name */ - int be_pid; /* process ID of server process */ + int be_pid; /* process ID of notifying server process */ char *extra; /* notification parameter */ /* Fields below here are private to libpq; apps should not use 'em */ struct pgNotify *next; /* list link */ |