summaryrefslogtreecommitdiffstats
path: root/src/appl
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl')
-rw-r--r--src/appl/gssftp/ftp/ChangeLog4
-rw-r--r--src/appl/gssftp/ftp/radix.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/appl/gssftp/ftp/ChangeLog b/src/appl/gssftp/ftp/ChangeLog
index 85e69cb38..51d11450a 100644
--- a/src/appl/gssftp/ftp/ChangeLog
+++ b/src/appl/gssftp/ftp/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-11 Sam Hartman <hartmans@mit.edu>
+
+ * radix.c : Initialize c and D to suppress warning; code was already correct
+
2002-04-10 Danilo Almeida <dalmeida@mit.edu>
* ftp.c: Include Winsock 2 instead of Winsock.
diff --git a/src/appl/gssftp/ftp/radix.c b/src/appl/gssftp/ftp/radix.c
index c989962c2..2d6dfd18d 100644
--- a/src/appl/gssftp/ftp/radix.c
+++ b/src/appl/gssftp/ftp/radix.c
@@ -13,9 +13,9 @@ int radix_encode(inbuf, outbuf, len, decode)
unsigned char inbuf[], outbuf[];
int *len, decode;
{
- int i,j,D;
+ int i,j,D = 0;
char *p;
- unsigned char c;
+ unsigned char c = 0;
if (decode) {
for (i=0,j=0; inbuf[i] && inbuf[i] != pad; i++) {