summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 13:50:37 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 13:50:37 +1100
commit304a940889e7673a017147e2dcbdaefb564f427a (patch)
tree7172be4b48ce746fcfcf496885e7fd1aaebc0dc6
parent5b83232b48b83e05856f96a5f7477e0352a29b1e (diff)
- djm@cvs.openbsd.org 2006/03/17 22:31:11
[authfd.c] unreachanble statement, found by lint
-rw-r--r--ChangeLog5
-rw-r--r--authfd.c1
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0245a0e03..0e4249605 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,9 @@
11 - djm@cvs.openbsd.org 2006/03/17 22:31:50 11 - djm@cvs.openbsd.org 2006/03/17 22:31:50
12 [authfd.c] 12 [authfd.c]
13 another unreachable found by lint 13 another unreachable found by lint
14 - djm@cvs.openbsd.org 2006/03/17 22:31:11
15 [authfd.c]
16 unreachanble statement, found by lint
14 17
1520060325 1820060325
16 - OpenBSD CVS Sync 19 - OpenBSD CVS Sync
@@ -4268,4 +4271,4 @@
4268 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4271 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4269 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4272 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4270 4273
4271$Id: ChangeLog,v 1.4244 2006/03/26 02:50:14 djm Exp $ 4274$Id: ChangeLog,v 1.4245 2006/03/26 02:50:37 djm Exp $
diff --git a/authfd.c b/authfd.c
index 421d75a77..22c585e94 100644
--- a/authfd.c
+++ b/authfd.c
@@ -337,7 +337,6 @@ ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int versio
337 break; 337 break;
338 default: 338 default:
339 return NULL; 339 return NULL;
340 break;
341 } 340 }
342 /* Decrement the number of remaining entries. */ 341 /* Decrement the number of remaining entries. */
343 auth->howmany--; 342 auth->howmany--;