From e62a58eb31e652c862b65309be89b3a055ab2584 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 1 Jun 2012 16:05:22 +0000 Subject: [PATCH] remove uuid helper code --- daemon/aux.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/daemon/aux.h b/daemon/aux.h index 0c5b67ed3..738da830b 100644 --- a/daemon/aux.h +++ b/daemon/aux.h @@ -11,7 +11,6 @@ #include #include #include -#include #include @@ -84,12 +83,6 @@ static inline char chrtoupper(char x) { return x & 0xdf; } -static inline void uuid_str_generate(char *s) { - uuid_t uuid; - uuid_generate(uuid); - uuid_unparse(uuid, s); -} - static inline void swap_ptrs(void *a, void *b) { void *t, **aa, **bb; aa = a;