~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/lib/net/netif/netif_local.c

  • Committer: Martin Decky
  • Date: 2011-01-07 18:57:55 UTC
  • Revision ID: martin@medusa.d3s.hide.ms.mff.cuni.cz-20110107185755-7gtpva43a3qf9rg3
* make measured_string and other network-related data types binary-safe
* fix several network-related routines binary-safe (replace clearly suspicious use of str_lcmp() with bcmp())
* rename spawn() to net_spawn()

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
        
221
221
        fibril_rwlock_read_unlock(&netif_globals.lock);
222
222
        
223
 
        *data = (uint8_t *) (**address).value;
 
223
        *data = (**address).value;
224
224
        
225
225
        return rc;
226
226
}