]> granicus.if.org Git - postgresql/commitdiff
Improve comment.
authorBruce Momjian <bruce@momjian.us>
Sun, 8 Aug 2004 02:22:55 +0000 (02:22 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 8 Aug 2004 02:22:55 +0000 (02:22 +0000)
src/port/exec.c

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