summaryrefslogtreecommitdiff
path: root/auth-rhosts.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-18 20:53:10 +1000
committerDamien Miller <djm@mindrot.org>2003-05-18 20:53:10 +1000
commita9825785e864fa795d4b39d99d14bc6f9995a7dc (patch)
tree36ec0e16621ac6fc3078a4f145a11b6256883758 /auth-rhosts.c
parent7e1bbc55af32d8f5d81200323198c65b548faaad (diff)
downloadopenssh-git-a9825785e864fa795d4b39d99d14bc6f9995a7dc.tar.gz
- itojun@cvs.openbsd.org 2003/05/17 03:25:58
[auth-rhosts.c] just in case, put numbers to sscanf %s arg.
Diffstat (limited to 'auth-rhosts.c')
-rw-r--r--auth-rhosts.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/auth-rhosts.c b/auth-rhosts.c
index de2cb67f..a3847810 100644
--- a/auth-rhosts.c
+++ b/auth-rhosts.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth-rhosts.c,v 1.29 2003/04/08 20:21:28 itojun Exp $");
+RCSID("$OpenBSD: auth-rhosts.c,v 1.30 2003/05/17 03:25:58 itojun Exp $");
#include "packet.h"
#include "uidswap.h"
@@ -68,7 +68,8 @@ check_rhosts_file(const char *filename, const char *hostname,
* This should be safe because each buffer is as big as the
* whole string, and thus cannot be overwritten.
*/
- switch (sscanf(buf, "%s %s %s", hostbuf, userbuf, dummy)) {
+ switch (sscanf(buf, "%1023s %1023s %1023s", hostbuf, userbuf,
+ dummy)) {
case 0:
auth_debug_add("Found empty line in %.100s.", filename);
continue;