|
1 |
| -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.91 2004/11/09 15:57:55 petere Exp $ */ |
| 1 | +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.92 2005/08/29 01:32:00 tgl Exp $ */ |
2 | 2 |
|
3 | 3 | /* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
|
4 | 4 | /* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
|
@@ -434,7 +434,7 @@ main(int argc, char *const argv[])
|
434 | 434 | * Does not really make sense to declare a cursor
|
435 | 435 | * but not open it
|
436 | 436 | */
|
437 |
| -snprintf(errortext,sizeof(errortext),"cursor`%s´ has been declared butot opened\n",ptr->name); |
| 437 | +snprintf(errortext,sizeof(errortext),"cursor\"%s\" has been declared butnot opened\n",ptr->name); |
438 | 438 | mmerror(PARSE_ERROR,ET_WARNING,errortext);
|
439 | 439 | }
|
440 | 440 | ptr=ptr->next;
|
|