diff options
Diffstat (limited to 'libssh/error.c')
-rw-r--r-- | libssh/error.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libssh/error.c b/libssh/error.c index 2ad6777..9c360d8 100644 --- a/libssh/error.c +++ b/libssh/error.c @@ -29,8 +29,6 @@ MA 02111-1307, USA. */ * @{ */ -static int verbosity; - /* ssh_set_error registers an error with a description. the error code is the class of error, and description is obvious.*/ void ssh_set_error(void *error,int code,char *descr,...){ struct error_struct *err= error; @@ -64,16 +62,4 @@ int ssh_get_error_code(void *error){ return err->error_code; } -void ssh_say(int priority, const char *format, ...){ - va_list va; - va_start(va,format); - if(priority <= verbosity) - vfprintf(stderr,format,va); - va_end(va); -} - -void ssh_set_verbosity(int num){ - verbosity=num; -} - /** @} */ |