Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7ecfacc

Browse files
committed
Fix two flaws in comments I just introduced, pointed out by Tom.
1 parent 76e6602 commit 7ecfacc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/include/utils/elog.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.95 2008/10/09 17:24:05 alvherre Exp $
10+
* $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.96 2008/10/09 22:22:31 alvherre Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -97,7 +97,7 @@
9797
* wish to use a different message catalog from the backend's. To avoid having
9898
* one copy of the default text domain per .o file, we define it as NULL here
9999
* and have errstart insert the default text domain. Modules can either use
100-
* ereport_domain() directly, or preferrably they can override the TEXTDOMAIN
100+
* ereport_domain() directly, or preferably they can override the TEXTDOMAIN
101101
* macro.
102102
*----------
103103
*/
@@ -281,7 +281,7 @@ typedef struct ErrorData
281281
const char *filename; /* __FILE__ of ereport() call */
282282
int lineno; /* __LINE__ of ereport() call */
283283
const char *funcname; /* __func__ of ereport() call */
284-
const char *domain; /* message domain, NULL if default */
284+
const char *domain; /* message domain */
285285
int sqlerrcode; /* encoded ERRSTATE */
286286
char *message; /* primary error message */
287287
char *detail; /* detail error message */

0 commit comments

Comments
 (0)