summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/log.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2000-12-19 23:17:54 +0000
committermarkus <markus@openbsd.org>2000-12-19 23:17:54 +0000
commitbdb35367721d8011751b7144642e5d95b68b3ab6 (patch)
tree41927c0fb8c468907da078d6a5f0a596c1f3d562 /usr.bin/ssh/log.c
parentreplace <ssl/x.h> with <openssl/x.h> (diff)
downloadwireguard-openbsd-bdb35367721d8011751b7144642e5d95b68b3ab6.tar.xz
wireguard-openbsd-bdb35367721d8011751b7144642e5d95b68b3ab6.zip
replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'
with u_char.
Diffstat (limited to 'usr.bin/ssh/log.c')
-rw-r--r--usr.bin/ssh/log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/log.c b/usr.bin/ssh/log.c
index ce89c59ba82..9cae37125e6 100644
--- a/usr.bin/ssh/log.c
+++ b/usr.bin/ssh/log.c
@@ -36,7 +36,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: log.c,v 1.11 2000/09/30 16:27:43 markus Exp $");
+RCSID("$OpenBSD: log.c,v 1.12 2000/12/19 23:17:57 markus Exp $");
#include "ssh.h"
#include "xmalloc.h"
@@ -155,7 +155,7 @@ fatal_remove_cleanup(void (*proc) (void *context), void *context)
}
}
fatal("fatal_remove_cleanup: no such cleanup function: 0x%lx 0x%lx\n",
- (unsigned long) proc, (unsigned long) context);
+ (u_long) proc, (u_long) context);
}
/* Cleanup and exit */
@@ -172,7 +172,7 @@ fatal_cleanup(void)
for (cu = fatal_cleanups; cu; cu = next_cu) {
next_cu = cu->next;
debug("Calling cleanup 0x%lx(0x%lx)",
- (unsigned long) cu->proc, (unsigned long) cu->context);
+ (u_long) cu->proc, (u_long) cu->context);
(*cu->proc) (cu->context);
}
exit(255);