Fix lots of typos in krb5_make_fulladdrs() patch. (Lots of places where
authorTheodore Tso <tytso@mit.edu>
Wed, 3 May 1995 01:18:57 +0000 (01:18 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 3 May 1995 01:18:57 +0000 (01:18 +0000)
remote_addr was used where remote_port should have been used instead.)

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

src/lib/krb5/krb/mk_cred.c
src/lib/krb5/krb/mk_priv.c
src/lib/krb5/krb/rd_cred.c
src/lib/krb5/krb/rd_priv.c
src/lib/krb5/krb/rd_safe.c

index 44b6879a39f30f84690a9b028e9c26b990553fb9..8eb964040786cdfaf8219a88918db49908e9291e 100644 (file)
@@ -6,54 +6,6 @@
  *    Provide an interface to assemble and disassemble krb5_cred
  *    structures.
  *
- * MODIFIED
- * $Log$
- * Revision 5.11  1995/05/02 23:31:39  proven
- *         * mk_cred.c (mk_cred()), mk_priv.c (mk_priv()), mk_safe.c (mk_safe()),
- *     * rd_cred.c (rd_cred()), rd_priv.c (rd_priv()), rd_safe.c (rd_safe()):
- *             Don't call krb5_make_fulladdrs() if a port isn't specified.
- *
- * Revision 5.10  1995/05/01 20:49:45  proven
- *         * auth_con.c (krb5_auth_con_free()) :
- *             Free all the data associated with the auth_context.
- *
- *     * auth_con.c (krb5_auth_con_setkey()) : Removed.
- *     * mk_rep.c (mk_rep()),
- *                 The krb5_mk_rep() routine must always encode the data in
- *                 the keyblock of the ticket, not the subkey.
- *
- *     * cleanup.h, auth_con.c (krb5_auth_con_setports()) : Added.
- *         * auth_con.h, mk_cred.c (mk_cred()), mk_priv.c (mk_priv()),
- *     * mk_safe.c (mk_safe()), rd_cred.c (rd_cred()),
- *     * rd_priv.c (rd_priv()), rd_safe.c (rd_safe()) :
- *             Changes to auth_context to better support full addresses.
- *
- * Revision 5.9  1995/04/28 01:18:18  keithv
- * Fixes so that the Unix changes no longer breaks on the PC.
- *
- * Revision 5.8  1995/04/26 03:03:11  proven
- *     * Makefile.in : Added gc_via_tkt.c and removed get_fcreds.c
- *     * auth_con.c (krb5_auth_con_setaddrs()) : Fixed so it allocates
- *             space and copies addresses, not just pointer.
- *     * mk_cred.c: Completely rewritten from sources donated by asriniva.
- *     * rd_cred.c: Completely rewritten from sources donated by asriniva.
- *     * mk_priv.c (krb5_mk_priv()), mk_safe.c (krb5_mk_safe()),
- *       rd_priv.c (krb5_rd_priv()), and rd_safe (krb5_rd_safe()) :
- *             Try using a subkey before using the session key for encryption.
- *     * recvauth.c (krb5_recvauth()): Don't close the rcache on success.
- *
- * Revision 1.3  1995/01/26  00:09:24  asriniva
- * Completely rewrote API to credential passing code.
- *
- * Revision 1.2  1994/12/30  21:57:17  asriniva
- * Killed compile time warnings/errors.
- * Fixed runtime bugs.
- * Require a ticket when calling krb5_initcred.
- * Cleaned up krb5_addticket.
- *
- * Revision 1.1  1994/12/29  17:03:30  asriniva
- * Initial revision
- *
  */
 #include <k5-int.h>
 #include "cleanup.h"
index fe309399b5bbd8ae60faa61be5cb291bbae0359b..7efbbafb2f81c642a666a220c91cb98bde5be2ec 100644 (file)
@@ -208,7 +208,7 @@ krb5_mk_priv(context, auth_context, userdata, outbuf, outdata)
     }
 
     if (auth_context->remote_addr) {
-       if (auth_context->remote_addr) {
+       if (auth_context->remote_port) {
            if (!(retval = krb5_make_fulladdr(context,auth_context->remote_addr,
                                              auth_context->remote_port, 
                                              &remote_fulladdr))){
index 7987ba460122b1321a571f34d23058f96dd2bb8e..7a7b063bb31204335005faf4cd59ec0883f27089 100644 (file)
@@ -241,7 +241,7 @@ krb5_rd_cred(context, auth_context, pcreddata, pppcreds, outdata)
     CLEANUP_INIT(2);
 
     if (auth_context->local_addr) {
-       if (auth_context->local_addr) {
+       if (auth_context->local_port) {
             if (!(retval = krb5_make_fulladdr(context,auth_context->local_addr,
                                              auth_context->local_port, 
                                              &local_fulladdr))){
@@ -256,7 +256,7 @@ krb5_rd_cred(context, auth_context, pcreddata, pppcreds, outdata)
     }
 
     if (auth_context->remote_addr) {
-       if (auth_context->remote_addr) {
+       if (auth_context->remote_port) {
             if (!(retval = krb5_make_fulladdr(context,auth_context->remote_addr,
                                              auth_context->remote_port, 
                                              &remote_fulladdr))){
index a7964513b3fc05be429d34640256d7816276d611..aa962178ab32188721d8f6522e062e618278bee7 100644 (file)
@@ -206,7 +206,7 @@ krb5_rd_priv(context, auth_context, inbuf, outbuf, outdata)
     CLEANUP_INIT(2);
 
     if (auth_context->local_addr) {
-       if (auth_context->local_addr) {
+       if (auth_context->local_port) {
             if (!(retval = krb5_make_fulladdr(context, auth_context->local_addr,
                                              auth_context->local_port, 
                                              &local_fulladdr))){
@@ -221,7 +221,7 @@ krb5_rd_priv(context, auth_context, inbuf, outbuf, outdata)
     }
 
     if (auth_context->remote_addr) {
-       if (auth_context->remote_addr) {
+       if (auth_context->remote_port) {
             if (!(retval = krb5_make_fulladdr(context,auth_context->remote_addr,
                                              auth_context->remote_port, 
                                              &remote_fulladdr))){
index b4eb1980e1759ed881b6726f349c442aa9c59aa5..06d246d5bc148525f225107534300795d599ad34 100644 (file)
@@ -197,7 +197,7 @@ krb5_rd_safe(context, auth_context, inbuf, outbuf, outdata)
     CLEANUP_INIT(2);
 
     if (auth_context->local_addr) {
-       if (auth_context->local_addr) {
+       if (auth_context->local_port) {
             if (!(retval = krb5_make_fulladdr(context, auth_context->local_addr,
                                              auth_context->local_port, 
                                              &local_fulladdr))){
@@ -212,7 +212,7 @@ krb5_rd_safe(context, auth_context, inbuf, outbuf, outdata)
     }
 
     if (auth_context->remote_addr) {
-       if (auth_context->remote_addr) {
+       if (auth_context->remote_port) {
             if (!(retval = krb5_make_fulladdr(context,auth_context->remote_addr,
                                              auth_context->remote_port, 
                                              &remote_fulladdr))){