Index: gssapi.c =================================================================== RCS file: /home/cvs/debian/fetchmail/gssapi.c,v retrieving revision 1.1.1.7 retrieving revision 1.7 diff -u -r1.1.1.7 -r1.7 --- gssapi.c 9 Nov 2001 00:24:05 -0000 1.1.1.7 +++ gssapi.c 2 Feb 2002 23:07:48 -0000 1.7 @@ -121,7 +121,7 @@ } request_buf.length = from64tobits(buf2, buf1 + 2, sizeof(buf2)); if (request_buf.length == -1) /* in case of bad data */ - request_buf.length = 0 + request_buf.length = 0; request_buf.value = buf2; sec_token = &request_buf; } @@ -135,7 +135,7 @@ request_buf.length = from64tobits(buf2, buf1 + 2, sizeof(buf2)); if (request_buf.length == -1) /* in case of bad data */ - request_buf.length = 0 + request_buf.length = 0; request_buf.value = buf2; maj_stat = gss_unwrap(&min_stat, context, Index: rcfile_y.y =================================================================== RCS file: /home/cvs/debian/fetchmail/rcfile_y.y,v retrieving revision 1.1.1.18 diff -u -r1.1.1.18 rcfile_y.y --- rcfile_y.y 15 Feb 2002 03:23:33 -0000 1.1.1.18 +++ rcfile_y.y 15 Feb 2002 11:27:54 -0000 @@ -364,13 +364,7 @@ | NO MIMEDECODE {current.mimedecode = FLAG_FALSE;} | NO IDLE {current.idle = FLAG_FALSE;} - | NO SSL { -#ifdef SSL_ENABLE - current.use_ssl = FLAG_FALSE; -#else - yyerror(GT_("SSL is not enabled")) -#endif - } + | NO SSL {current.use_ssl = FLAG_FALSE;} | LIMIT NUMBER {current.limit = NUM_VALUE_IN($2);} | WARNINGS NUMBER {current.warnings = NUM_VALUE_IN($2);} Index: socket.c =================================================================== RCS file: /home/cvs/debian/fetchmail/socket.c,v retrieving revision 1.1.1.16 retrieving revision 1.9 diff -u -r1.1.1.16 -r1.9 --- socket.c 15 Feb 2002 03:25:24 -0000 1.1.1.16 +++ socket.c 17 Feb 2002 10:53:35 -0000 1.9 @@ -804,13 +804,13 @@ } tp += esz; } - if (outlevel > O_SILENT) + if (outlevel > O_NORMAL) report(stdout, GT_("%s key fingerprint: %s\n"), _server_label, text); if (_check_digest != NULL) { - if (strcmp(text, _check_digest) == 0) - if (outlevel > O_SILENT) + if (strcmp(text, _check_digest) == 0) { + if (outlevel > O_NORMAL) report(stdout, GT_("%s fingerprints match.\n"), _server_label); - else { + } else { if (outlevel > O_SILENT) report(stderr, GT_("%s fingerprints do not match!\n"), _server_label); return (0);