File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.8 1997/04/04 08:53:08 scrappy Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/date.c,v 1.9 1997/04/20 21:49:17 scrappy Exp $
13
13
*
14
14
* NOTES
15
15
* This code is actually (almost) unused.
@@ -216,19 +216,19 @@ char *tintervalout(TimeInterval interval)
216
216
char * i_str , * p ;
217
217
218
218
i_str = (char * ) palloc ( T_INTERVAL_LEN ); /* ['...' '...'] */
219
- (void ) strcpy (i_str ,"[' " );
219
+ (void ) strcpy (i_str ,"[\" " );
220
220
if (interval -> status == T_INTERVAL_INVAL )
221
221
(void ) strcat (i_str ,INVALID_INTERVAL_STR );
222
222
else {
223
223
p = nabstimeout (interval -> data [0 ]);
224
224
(void ) strcat (i_str ,p );
225
225
pfree (p );
226
- (void ) strcat (i_str ,"' ' " );
226
+ (void ) strcat (i_str ,"\" \" " );
227
227
p = nabstimeout (interval -> data [1 ]);
228
228
(void ) strcat (i_str ,p );
229
229
pfree (p );
230
230
}
231
- (void ) strcat (i_str ,"' ]\0" );
231
+ (void ) strcat (i_str ,"\" ]\0" );
232
232
return (i_str );
233
233
}
234
234
You can’t perform that action at this time.
0 commit comments