Update source headers for 2008. Omit CVS ID keyword subst.
[yaz-moved-to-github.git] / src / snprintf.c
index fccf3b0..0221f97 100644 (file)
@@ -1,8 +1,6 @@
-/*
- * Copyright (C) 2007, Index Data ApS
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2008 Index Data
  * See the file LICENSE for details.
- *
- * $Id: snprintf.c,v 1.1 2007-02-23 10:15:01 adam Exp $
  */
 /**
  * \file snprintf.c
@@ -15,7 +13,7 @@
 
 void yaz_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
 {
-#if HAVE_VSNPRINF
+#if HAVE_VSNPRINTF
     vsnprintf(buf, size, fmt, ap);
 #else
 #ifdef WIN32