summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-02-06 23:45:46 +0100
committerDave Davenport <qball@gmpclient.org>2017-02-06 23:45:46 +0100
commit7b3e0918cfe9f24737f725a21ef577aff3a43dfb (patch)
treeaa37bf86bdb8c47c257ca77e131fa93c3ada2555 /source/dialogs
parentd3b050e1f1276c7f27392805b75ab91335ab2edd (diff)
Reduce amount of paths created
Diffstat (limited to 'source/dialogs')
-rw-r--r--source/dialogs/ssh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/dialogs/ssh.c b/source/dialogs/ssh.c
index c0ba2f8c..8cfe68fd 100644
--- a/source/dialogs/ssh.c
+++ b/source/dialogs/ssh.c
@@ -198,7 +198,7 @@ static char **read_hosts_file ( char ** retv, unsigned int *length )
// Reading one line per time.
while ( getline ( &buffer, &buffer_length, fd ) > 0 ) {
// Evaluate one line.
- unsigned int index = 0, ti = 0;
+ unsigned int index = 0, ti = 0;
char *token = buffer;
// Tokenize it.