|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $PostgreSQL: pgsql/src/port/exec.c,v 1.17 2004/07/26 01:48:00 momjian Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/port/exec.c,v 1.18 2004/08/08 02:22:55 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -383,8 +383,10 @@ static char *pipe_read_line(char *cmd, char *line, int maxsize)
|
383 | 383 | /* So we read some data */
|
384 | 384 | retval=line;
|
385 | 385 |
|
386 |
| -/* We emulate fgets() behaviour. So if there is no newline |
387 |
| - * at the end, we add one... */ |
| 386 | +/* |
| 387 | + *We emulate fgets() behaviour. So if there is no newline |
| 388 | + *at the end, we add one... |
| 389 | + */ |
388 | 390 | if (line[strlen(line)-1]!='\n')
|
389 | 391 | strcat(line,"\n");
|
390 | 392 | }
|
|