]> code.citadel.org Git - citadel.git/blobdiff - webcit/calendar_tools.c
* Cleaned up the rcs/cvs Id tags and leading comments at the top of some files
[citadel.git] / webcit / calendar_tools.c
index 5b34a88c1d88f10070bacd6e895ce916d50d0e3c..b36497a98c3f86943398931a76dbfeb3d3b7a572 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- *
+ * Miscellaneous functions which handle calendar components.
  */
 
 #include <ctype.h>
@@ -172,18 +172,6 @@ struct icaltimetype icaltime_from_webform(char *prefix) {
 }
 
 
-/*
- * Generate a new, globally unique UID parameter for a calendar object.
- */
-void generate_new_uid(char *buf) {
-       static int seq = 0;
-
-       sprintf(buf, "%ld-%d@%s",
-               (long)time(NULL),
-               (seq++),
-               serv_info.serv_fqdn);
-}
-
 /*
  * Render a PARTSTAT parameter as a string (and put it in parentheses)
  */