summaryrefslogtreecommitdiff
path: root/loginrec.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2019-01-20 09:58:45 +1100
committerDamien Miller <djm@mindrot.org>2019-01-20 09:58:45 +1100
commit08f66d9f17e12c1140d1f1cf5c4dce67e915d3cc (patch)
tree70cb70df407096b8ff095d683b4f202f5e18653e /loginrec.h
parentc327813ea1d740e3e367109c17873815aba1328e (diff)
remove vestiges of old packet API from loginrec.c
Diffstat (limited to 'loginrec.h')
-rw-r--r--loginrec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/loginrec.h b/loginrec.h
index 28923e781..62cc0e78c 100644
--- a/loginrec.h
+++ b/loginrec.h
@@ -31,6 +31,8 @@
31 31
32#include "includes.h" 32#include "includes.h"
33 33
34struct ssh;
35
34/** 36/**
35 ** you should use the login_* calls to work around platform dependencies 37 ** you should use the login_* calls to work around platform dependencies
36 **/ 38 **/
@@ -126,6 +128,7 @@ char *line_fullname(char *dst, const char *src, u_int dstsize);
126char *line_stripname(char *dst, const char *src, int dstsize); 128char *line_stripname(char *dst, const char *src, int dstsize);
127char *line_abbrevname(char *dst, const char *src, int dstsize); 129char *line_abbrevname(char *dst, const char *src, int dstsize);
128 130
129void record_failed_login(const char *, const char *, const char *); 131void record_failed_login(struct ssh *, const char *, const char *,
132 const char *);
130 133
131#endif /* _HAVE_LOGINREC_H_ */ 134#endif /* _HAVE_LOGINREC_H_ */