Check-in [2df202595a]
Overview
Comment:Removed extraneous flush
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 2df202595a446257c2b0902a03d2103132fc4afe
User & Date: rkeene on 2014-02-05 09:18:59
Other Links: manifest | tags
Context
2014-02-05
18:06
Updated to statically link check-in: d37dd3792a user: rkeene tags: trunk
09:18
Removed extraneous flush check-in: 2df202595a user: rkeene tags: trunk
09:12
Updated to support being compiled with dietlibc check-in: a832cf965b user: rkeene tags: trunk
Changes

Modified filed.c from [3fb691b2d3] to [de3f48af84].

274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
		if (memcmp(tmpbuf, "\r\n", 2) == 0) {
			break;
		}
	}

	filed_log_msg("GOT_HEADERS FD=...");

	fflush(fp);

	/* We only handle the "GET" method */
	if (strcasecmp(method, "get") != 0) {
		return(NULL);
	}

	return(path);
}







<
<







274
275
276
277
278
279
280


281
282
283
284
285
286
287
		if (memcmp(tmpbuf, "\r\n", 2) == 0) {
			break;
		}
	}

	filed_log_msg("GOT_HEADERS FD=...");



	/* We only handle the "GET" method */
	if (strcasecmp(method, "get") != 0) {
		return(NULL);
	}

	return(path);
}