diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-04-17 14:56:44 +0000 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-04-17 14:56:44 +0000 |
commit | c48d04b2c7e1299242a6320574175e44f5cdd007 (patch) | |
tree | 1c3c279fcbdb4eb0d151f230b76a8ca5bc605a68 | |
parent | 44ab293f0b7d52de26380df9ec2ac88806d6aeff (diff) | |
download | libssh-c48d04b2c7e1299242a6320574175e44f5cdd007.tar.gz libssh-c48d04b2c7e1299242a6320574175e44f5cdd007.tar.xz libssh-c48d04b2c7e1299242a6320574175e44f5cdd007.zip |
space_tokenize should be rewritten.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@528 7dcaeef0-15fb-0310-b436-a5af3365683c
-rw-r--r-- | libssh/kex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libssh/kex.c b/libssh/kex.c index 1ff85c6..76791ba 100644 --- a/libssh/kex.c +++ b/libssh/kex.c @@ -137,6 +137,7 @@ static char **tokenize(const char *chain){ } /* same as tokenize(), but with spaces instead of ',' */ +/* TODO FIXME rewrite me! */ char **space_tokenize(const char *chain){ char **tokens; int n=1; |