comparison http.c @ 5527:2d0a0d3e5df1 libavformat

Reindent after r21166.
author rbultje
date Tue, 12 Jan 2010 16:36:23 +0000
parents f09594ca5f77
children fc48f8bfbf2e
comparison
equal deleted inserted replaced
5526:f09594ca5f77 5527:2d0a0d3e5df1
353 char crlf[] = "\r\n"; 353 char crlf[] = "\r\n";
354 HTTPContext *s = h->priv_data; 354 HTTPContext *s = h->priv_data;
355 355
356 if (s->chunksize == -1) { 356 if (s->chunksize == -1) {
357 /* headers are sent without any special encoding */ 357 /* headers are sent without any special encoding */
358 return url_write(s->hd, buf, size); 358 return url_write(s->hd, buf, size);
359 } 359 }
360 360
361 /* silently ignore zero-size data since chunk encoding that would 361 /* silently ignore zero-size data since chunk encoding that would
362 * signal EOF */ 362 * signal EOF */
363 if (size > 0) { 363 if (size > 0) {