-const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.34 2008/04/13 13:32:07 fabiankeil Exp $";
+const char urlmatch_rcs[] = "$Id: urlmatch.c,v 1.35 2008/04/14 18:11:21 fabiankeil Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/urlmatch.c,v $
*
* Revisions :
* $Log: urlmatch.c,v $
+ * Revision 1.35 2008/04/14 18:11:21 fabiankeil
+ * The compiler might not notice it, but the buffer passed to
+ * create_url_spec() is modified later on and thus shouldn't
+ * be declared immutable.
+ *
* Revision 1.34 2008/04/13 13:32:07 fabiankeil
* Factor URL pattern compilation out of create_url_spec().
*
}
/* If it isn't a tag pattern it must be a URL pattern. */
- return compile_url_pattern(url, (char *)buf);
+ return compile_url_pattern(url, buf);
}