GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ZIP_ERROR_TO_STR(3) FreeBSD Library Functions Manual ZIP_ERROR_TO_STR(3)

zip_error_to_str
get string representation of zip error (obsolete interface)

libzip (-lzip)

#include <zip.h>

int
zip_error_to_str(char *buf, zip_uint64_t len, int ze, int se);

The function zip_error_to_str() is deprecated; use zip_error_init_with_code(3) and zip_error_strerror(3) instead.

Replace

char buf[BUFSIZE];
zip_error_to_str(buf, sizeof(buf), ze, se);
printf("%s", buf);
with
zip_error_t error;
zip_error_init_with_code(&error, ze);
printf("%s", zip_error_strerror(&error));
zip_error_fini(&error);

libzip(3), zip_error_init_with_code(3), zip_error_strerror(3)

zip_error_to_str() was added in libzip 0.6. In libzip 0.10 the type of len was changed from size_t to zip_uint64_t. It was deprecated in libzip 1.0, use zip_error_init_with_code() and zip_error_strerror() instead.

Dieter Baron <dillo@nih.at> and Thomas Klausner <tk@giga.or.at>
December 18, 2017 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.