diff options
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 3d5cf92f7d1..fb1c116bc47 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.45 1999/04/25 03:19:08 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.46 1999/04/25 19:27:43 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -803,7 +803,7 @@ NotifyMyFrontEnd(char *relname, int32 listenerPID) pq_beginmessage(&buf); pq_sendbyte(&buf, 'A'); pq_sendint(&buf, listenerPID, sizeof(int32)); - pq_sendstring(&buf, relname, strlen(relname)); + pq_sendstring(&buf, relname); pq_endmessage(&buf); /* NOTE: we do not do pq_flush() here. For a self-notify, it will * happen at the end of the transaction, and for incoming notifies |