Diff

Differences From Artifact [b986b06d75]:

To Artifact [ba4c14a79b]:


536
537
538
539
540
541
542
543


544
545
546
547
548
549
550
536
537
538
539
540
541
542

543
544
545
546
547
548
549
550
551







-
+
+







#include "filed-mime-types.h"

	return(FILED_DEFAULT_TYPE);
}

/* Generate a unique identifier */
static void filed_generate_etag(char *etag, size_t length) {
	snprintf(etag, length, "%llx%llx%llx%llx",
	snprintf(etag, length, "%llx-%llx%llx%llx%llx",
		(unsigned long long) time(NULL),
		(unsigned long long) random(),
		(unsigned long long) random(),
		(unsigned long long) random(),
		(unsigned long long) random()
	);
}