Bug #1322 » etag.patch
etag.c 2007-08-24 13:35:43.000000000 -0700 | ||
---|---|---|
#include "etag.h"
|
||
int etag_is_equal(buffer *etag, const char *matches) {
|
||
if (0 == strcmp(etag->ptr, matches)) return 1;
|
||
if (etag && etag->ptr && 0 == strcmp(etag->ptr, matches)) return 1;
|
||
return 0;
|
||
}
|
||
- « Previous
- 1
- 2
- Next »