summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-08-24 00:39:56 +0200
committerDave Davenport <qball@gmpclient.org>2016-08-24 00:39:56 +0200
commitef3c773097072282627f5d16079602ff7111dcd5 (patch)
treee086d7601896cd946398e731477d78a80f0f8f82 /source/dialogs
parentad53de507cfdafa53873d701b3d18a7704144b0a (diff)
Constness.
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 397893dc..f11ba3a1 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.