Commit f5aa7f64 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added missing newlines to two infof() functions about document dates

parent 44254c49
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;