PERFORCE change 15696 for review

Robert Watson rwatson at freebsd.org
Thu Aug 8 21:22:42 GMT 2002


http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15696

Change 15696 by rwatson at rwatson_paprika on 2002/08/08 14:22:34

	Compile fixes to MAC support in AppleTalk.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/netatalk/aarp.c#5 edit
.. //depot/projects/trustedbsd/mac/sys/netatalk/ddp_input.c#7 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/netatalk/aarp.c#5 (text+ko) ====

@@ -131,7 +131,7 @@
 	return;
     }
 #ifdef MAC
-    mac_create_mbuf_linklayer(ac->ac_if, m);
+    mac_create_mbuf_linklayer(&ac->ac_if, m);
 #endif
     m->m_len = sizeof( *ea );
     m->m_pkthdr.len = sizeof( *ea );
@@ -555,7 +555,7 @@
 	return;
     }
 #ifdef MAC
-    mac_create_mbuf_linklayer(ac->ac_if, m);
+    mac_create_mbuf_linklayer(&ac->ac_if, m);
 #endif
     m->m_len = sizeof( *ea );
     m->m_pkthdr.len = sizeof( *ea );

==== //depot/projects/trustedbsd/mac/sys/netatalk/ddp_input.c#7 (text+ko) ====

@@ -398,7 +398,7 @@
     }
 
 #ifdef MAC
-    if (mac_check_socket_receive(&ddp->ddp_socket, m) != 0) {
+    if (mac_check_socket_receive(ddp->ddp_socket, m) != 0) {
 	m_freem( m );
 	return;
     }
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message



More information about the trustedbsd-cvs mailing list