diff options
author | Nikos Mavrogiannopoulos <nmav@crystal.(none)> | 2008-11-21 21:02:45 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@crystal.(none)> | 2008-11-21 21:02:45 +0200 |
commit | 8b14ab18cf5e5214ac3d28412e0c503e83a753c1 (patch) | |
tree | abae422411a81328e1f4c14dd1f26d7aa5e65b03 /src/cli.c | |
parent | 88eba89c793da85f57c599a599f0df25966ab989 (diff) | |
download | gnutls-8b14ab18cf5e5214ac3d28412e0c503e83a753c1.tar.gz |
Corrected bug which caused a rehandshake request to be ignored by gnutls-cli. Now
a rehandshake is being performed on request.
Diffstat (limited to 'src/cli.c')
-rw-r--r-- | src/cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -539,7 +539,7 @@ handle_error (socket_st * hd, int err) */ } - check_rehandshake (hd, ret); + check_rehandshake (hd, err); return ret; } |