diff options
author | des <des@FreeBSD.org> | 2003-05-13 10:18:49 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-05-13 10:18:49 +0000 |
commit | e0263bb5ea77ed7a08b6675a058ccde3ce35b66d (patch) | |
tree | df0662024316c6f011245c5ccfb1b52855e137f0 /crypto | |
parent | 416ef089cbb15b757b8b8ffc30d41cf065050e15 (diff) | |
download | FreeBSD-src-e0263bb5ea77ed7a08b6675a058ccde3ce35b66d.zip FreeBSD-src-e0263bb5ea77ed7a08b6675a058ccde3ce35b66d.tar.gz |
Revert unnecessary part of previous commit.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/log.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/crypto/openssh/log.h b/crypto/openssh/log.h index 383a1cb..628086a 100644 --- a/crypto/openssh/log.h +++ b/crypto/openssh/log.h @@ -62,13 +62,13 @@ LogLevel log_level_number(char *); #define debug2 ssh_debug2 #define debug3 ssh_debug3 -void ssh_fatal(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_error(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_log(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_verbose(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_debug(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_debug2(const char *, ...) __attribute__((format(printf, 1, 2))); -void ssh_debug3(const char *, ...) __attribute__((format(printf, 1, 2))); +void fatal(const char *, ...) __attribute__((format(printf, 1, 2))); +void error(const char *, ...) __attribute__((format(printf, 1, 2))); +void log(const char *, ...) __attribute__((format(printf, 1, 2))); +void verbose(const char *, ...) __attribute__((format(printf, 1, 2))); +void debug(const char *, ...) __attribute__((format(printf, 1, 2))); +void debug2(const char *, ...) __attribute__((format(printf, 1, 2))); +void debug3(const char *, ...) __attribute__((format(printf, 1, 2))); void fatal_cleanup(void); void fatal_add_cleanup(void (*) (void *), void *); |