summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c
index f35fe5647..8ace1bbd4 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.138 2005/03/10 10:15:02 dtucker Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.139 2005/03/10 22:01:05 deraadt Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -301,7 +301,7 @@ process_config_line(Options *options, const char *host,
301 Forward fwd; 301 Forward fwd;
302 302
303 /* Strip trailing whitespace */ 303 /* Strip trailing whitespace */
304 for(len = strlen(line) - 1; len > 0; len--) { 304 for (len = strlen(line) - 1; len > 0; len--) {
305 if (strchr(WHITESPACE, line[len]) == NULL) 305 if (strchr(WHITESPACE, line[len]) == NULL)
306 break; 306 break;
307 line[len] = '\0'; 307 line[len] = '\0';