* zip.h: Rename zip_get_error to zip_error_get;
        rename zip_file_get_error to zip_file_error_get;
        rename zip_error_str to zip_error_to_str;
        replace various zip_add_* and zip_replace_* functions
        with zip_source_*.  Adapt users.  Update docs.

--HG--
branch : HEAD
diff --git a/lib/zip_file_get_error.c b/lib/zip_file_get_error.c
index f9f36a6..bda59f4 100644
--- a/lib/zip_file_get_error.c
+++ b/lib/zip_file_get_error.c
@@ -1,7 +1,7 @@
 /*
-  $NiH$
+  $NiH: zip_file_error_get.c,v 1.1 2003/10/06 02:50:06 dillo Exp $
 
-  zip_file_get_error.c -- get zip file error
+  zip_file_error_get.c -- get zip file error
   Copyright (C) 1999, 2003 Dieter Baron and Thomas Klausner
 
   This file is part of libzip, a library to manipulate ZIP archives.
@@ -41,7 +41,7 @@
 
 
 void
-zip_file_get_error(struct zip_file *zf, int *zep, int *sep)
+zip_file_error_get(struct zip_file *zf, int *zep, int *sep)
 {
     _zip_error_get(&zf->error, zep, sep);
 }