added missing newlines to two infof() functions about document dates
authorDaniel Stenberg <daniel@haxx.se>
Wed, 10 Jan 2001 22:46:26 +0000 (22:46 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 10 Jan 2001 22:46:26 +0000 (22:46 +0000)
lib/highlevel.c

index 6a89e3b..ef05123 100644 (file)
@@ -456,14 +456,14 @@ _Transfer(struct connectdata *c_conn)
                     default:
                       if(timeofdoc < data->timevalue) {
                         infof(data,
-                              "The requested document is not new enough");
+                              "The requested document is not new enough\n");
                         return CURLE_OK;
                       }
                       break;
                     case TIMECOND_IFUNMODSINCE:
                       if(timeofdoc > data->timevalue) {
                         infof(data,
-                              "The requested document is not old enough");
+                              "The requested document is not old enough\n");
                         return CURLE_OK;
                       }
                       break;