aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-12-13 17:37:04 +0000
committerWerner Koch <[email protected]>2001-12-13 17:37:04 +0000
commitb41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2 (patch)
treed97795e0cb734da960f885c0298ce2ef10f95f6a
parentimproce memory handling (diff)
downloadgpgme-b41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2.tar.gz
gpgme-b41d06c0a1fdfbf42c12ad7e32a9ee4ba553f7e2.zip
* assuan-handler.c (assuan_get_active_fds): Fixed silly bug,
pretty obvious that nobody ever tested this function.
-rw-r--r--assuan/ChangeLog5
-rw-r--r--assuan/assuan-handler.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/assuan/ChangeLog b/assuan/ChangeLog
index 9b08c2b4..0c8a4df6 100644
--- a/assuan/ChangeLog
+++ b/assuan/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-13 Werner Koch <[email protected]>
+
+ * assuan-handler.c (assuan_get_active_fds): Fixed silly bug,
+ pretty obvious that nobody ever tested this function.
+
2001-12-12 Werner Koch <[email protected]>
* assuan-connect.c (assuan_pipe_connect): Implemented the inital
diff --git a/assuan/assuan-handler.c b/assuan/assuan-handler.c
index ff8024aa..614f83d8 100644
--- a/assuan/assuan-handler.c
+++ b/assuan/assuan-handler.c
@@ -471,7 +471,7 @@ assuan_get_active_fds (ASSUAN_CONTEXT ctx, int what,
{
int n = 0;
- if (ctx || fdarraysize < 2 || what < 0 || what > 1)
+ if (!ctx || fdarraysize < 2 || what < 0 || what > 1)
return -1;
if (!what)