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_GET_SYS_TYPE(3) FreeBSD Library Functions Manual ZIP_ERROR_GET_SYS_TYPE(3)

zip_error_get_sys_type
get type of system error code (obsolete interface)

libzip (-lzip)

#include <zip.h>

int
zip_error_get_sys_type(int ze);

The function zip_error_get_sys_type() is deprecated; use zip_error_init_with_code(3) and zip_error_system_type(3) instead.

Replace

int i = zip_error_get_sys_type(ze);
with
zip_error_t error;
zip_error_init_with_code(&error, ze);
int i = zip_error_system_type(&error);

libzip(3), zip_error_init_with_code(3), zip_error_system_type(3)

zip_error_get_sys_type() was added in libzip 0.6. It was deprecated in libzip 1.0, use zip_error_system_type() 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.