Happy new year
[yaz-moved-to-github.git] / src / wrbuf.c
index f9affa3..c05b7a0 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2008 Index Data
+ * Copyright (C) 1995-2009 Index Data
  * See the file LICENSE for details.
  */
 
@@ -78,9 +78,9 @@ int wrbuf_puts(WRBUF b, const char *buf)
     return 0;
 }
 
-void wrbug_put(WRBUF b, const char *buf)
+void wrbuf_vputs(const char *buf, void *client_data)
 {
-    wrbuf_write(b, buf, strlen(buf));
+    wrbuf_write((WRBUF) client_data, buf, strlen(buf));
 }
 
 int wrbuf_puts_replace_char(WRBUF b, const char *buf,