Removed useless call from the API
authorDaniel Kouřil <kouril@ics.muni.cz>
Thu, 19 Jan 2012 08:25:13 +0000 (08:25 +0000)
committerDaniel Kouřil <kouril@ics.muni.cz>
Thu, 19 Jan 2012 08:25:13 +0000 (08:25 +0000)
emi.canl.canl-c/src/canl.h

index 5c1cf37..4af6b37 100644 (file)
@@ -32,8 +32,9 @@ canl_err_code CANL_CALLCONV
 canl_create_io_handler(canl_ctx cc, canl_io_handler*);
 
 canl_err_code CANL_CALLCONV
-canl_io_connect(canl_ctx cc, canl_io_handler io, const char *host, const char *service,
-                int port, gss_OID_set auth_mechs, int flags, struct timeval *timeout);
+canl_io_connect(canl_ctx cc, canl_io_handler io, const char *host,
+               const char *service, int port, gss_OID_set auth_mechs,
+               int flags, struct timeval *timeout);
 
 canl_err_code CANL_CALLCONV
 canl_io_accept(canl_ctx cc, canl_io_handler io, int fd, struct sockaddr s_addr,
@@ -54,9 +55,6 @@ char * CANL_CALLCONV
 canl_get_error_message(canl_ctx);
 
 canl_err_code CANL_CALLCONV
-canl_get_error(canl_ctx cc, char ** reason);
-
-canl_err_code CANL_CALLCONV
 canl_io_close(canl_ctx cc, canl_io_handler io);
 
 canl_err_code CANL_CALLCONV