Honour escaped slashes in regular expressions.
[radsecproxy.git] / list.c
diff --git a/list.c b/list.c
index 5bfea67..0a193ef 100644 (file)
--- a/list.c
+++ b/list.c
@@ -1,10 +1,5 @@
-/*
- * Copyright (C) 2006-2009 Stig Venaas <venaas@uninett.no>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- */
+/* Copyright (c) 2007-2009, UNINETT AS */
+/* See LICENSE for licensing information. */
 
 #include <stdlib.h>
 #include <string.h>
@@ -117,3 +112,7 @@ struct list_node *list_next(struct list_node *node) {
 uint32_t list_count(struct list *list) {
     return list->count;
 }
+
+/* Local Variables: */
+/* c-file-style: "stroustrup" */
+/* End: */