kcmd.c and krcp.c: Add <stdlib.h> for malloc declarations.
authorEzra Peisach <epeisach@mit.edu>
Tue, 9 May 1995 12:27:20 +0000 (12:27 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 9 May 1995 12:27:20 +0000 (12:27 +0000)
krshd.c: Cast sockadr_in * to sockaddr * in call to accept. (compiler
warning).

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5762 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/kcmd.c
src/appl/bsd/krcp.c
src/appl/bsd/krshd.c

index 41b27a809530e577882ae1c38e1b7990f83da89e..cfb1d7252e8d49eec5cf5453bd5124b74400f9a4 100644 (file)
@@ -1,3 +1,15 @@
+Tue May  9 08:17:18 1995  Ezra Peisach  (epeisach@kangaroo.mit.edu)
+
+       * krshd.c (main): Cast a sockaddr_in * to sockaddr * in call to
+               accept. 
+
+       * kcmd.c: Add <stdlib.h>
+
+       * krcp.c: Add <stdlib.h>.
+
+Sat May  6 18:12:37 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * krcp.c (answer_auth): Added const declaration to filenames.
 
 Fri May 05 09:16:16 1995  Chris Provenzano (proven@mit.edu)
 
index bff744dba066ad8811b5c36afb5619881532df6c..9cfb8f42350c688355e09ee7a1656f9f197313ae 100644 (file)
@@ -21,6 +21,9 @@
 
 /* derived from @(#)rcmd.c     5.17 (Berkeley) 6/27/88 */
      
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
index 274f6e1e51303d29516e845c27b552f766fd2680..5191fe186b7ddb36f0b008232d5c07aeacbfac56 100644 (file)
@@ -30,6 +30,10 @@ char copyright[] =
      /*
       * rcp
       */
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
 #include <sys/param.h>
 #ifndef _TYPES_
 #include <sys/types.h>
@@ -1343,7 +1347,7 @@ void
     krb5_auth_context *auth_context = NULL;
     
     if (config_file) {
-       char * filenames[2];
+       const char * filenames[2];
        filenames[1] = NULL;
        filenames[0] = config_file;
        if (status = krb5_set_config_files(bsd_context, filenames))
index 7d774c33815f342f5a91d4e3e6cb40127bc644c5..6d96e82833cf60881f1b54f12d148ce509e813d9 100644 (file)
@@ -393,7 +393,7 @@ main(argc, argv)
            exit(2);
        }
        
-       if ((fd = accept(s, &from, &fromlen)) < 0) {
+       if ((fd = accept(s, (struct sockaddr *) &from, &fromlen)) < 0) {
            fprintf(stderr, "Error in accept: %s\n", strerror(errno));
            exit(2);
        }