Module Name:    src
Committed By:   christos
Date:           Sun Oct 20 03:34:58 UTC 2013

Modified Files:
        src/crypto/external/bsd/openssh/dist: auth1.c

Log Message:
fix wrong argument to sizeof.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/crypto/external/bsd/openssh/dist/auth1.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/openssh/dist/auth1.c
diff -u src/crypto/external/bsd/openssh/dist/auth1.c:1.6 src/crypto/external/bsd/openssh/dist/auth1.c:1.7
--- src/crypto/external/bsd/openssh/dist/auth1.c:1.6	Fri Mar 29 12:19:44 2013
+++ src/crypto/external/bsd/openssh/dist/auth1.c	Sat Oct 19 23:34:58 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: auth1.c,v 1.6 2013/03/29 16:19:44 christos Exp $	*/
+/*	$NetBSD: auth1.c,v 1.7 2013/10/20 03:34:58 christos Exp $	*/
 /* $OpenBSD: auth1.c,v 1.77 2012/12/02 20:34:09 djm Exp $ */
 /*
  * Copyright (c) 1995 Tatu Ylonen <y...@cs.hut.fi>, Espoo, Finland
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-__RCSID("$NetBSD: auth1.c,v 1.6 2013/03/29 16:19:44 christos Exp $");
+__RCSID("$NetBSD: auth1.c,v 1.7 2013/10/20 03:34:58 christos Exp $");
 #include <sys/types.h>
 #include <sys/queue.h>
 
@@ -162,7 +162,7 @@ auth1_process_kerberos(Authctxt *authctx
 
 		if (PRIVSEP(auth_krb4(authctxt, &tkt, &client_user, &reply))) {
 			authenticated = 1;
-			snprintf(info, sizeof(info), " tktuser %.100s",
+			snprintf(info, infolen, " tktuser %.100s",
 			    client_user);
 
 			packet_start(SSH_SMSG_AUTH_KERBEROS_RESPONSE);
@@ -182,7 +182,7 @@ auth1_process_kerberos(Authctxt *authctx
 
 		if (PRIVSEP(auth_krb5(authctxt, &tkt, &client_user, &reply))) {
 			authenticated = 1;
-			snprintf(info, sizeof(info), " tktuser %.100s",
+			snprintf(info, infolen, " tktuser %.100s",
 			    client_user);
 
 			/* Send response to client */

Reply via email to