summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-03 21:40:14 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-03 21:40:14 +0200
commitc29f897d6963886f3238242efc32f18ff8be294a (patch)
tree63cd20ed2230f4135ba0d1ac4936369409f06df6 /source/dialogs
parent68641a21438ae402a28c5995128e28d8b14981d0 (diff)
Don't inline function that uses alloca.
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 1aa0da0d..dc2151db 100644
--- a/source/dialogs/ssh.c
+++ b/source/dialogs/ssh.c
@@ -74,7 +74,7 @@
*
* @returns FALSE On failure, TRUE on success
*/
-static inline int execshssh ( const char *host )
+static int execshssh ( const char *host )
{
char **args = NULL;
int argsv = 0;