Symbol: s_ospcl
sbin/restore/tape.c
145
} s_ospcl;
sbin/restore/tape.c
1460
readtape((char *)(&u_ospcl.s_ospcl));
sbin/restore/tape.c
1461
if (checksum((int *)(&u_ospcl.s_ospcl)) == FAIL)
sbin/restore/tape.c
1463
if (u_ospcl.s_ospcl.c_magic != OFS_MAGIC) {
sbin/restore/tape.c
1464
if (bswap32(u_ospcl.s_ospcl.c_magic) != OFS_MAGIC)
sbin/restore/tape.c
1470
swap_old_header(&u_ospcl.s_ospcl);
sbin/restore/tape.c
1474
buf->c_type = u_ospcl.s_ospcl.c_type;
sbin/restore/tape.c
1475
buf->c_date = u_ospcl.s_ospcl.c_date;
sbin/restore/tape.c
1476
buf->c_ddate = u_ospcl.s_ospcl.c_ddate;
sbin/restore/tape.c
1477
buf->c_volume = u_ospcl.s_ospcl.c_volume;
sbin/restore/tape.c
1478
buf->c_tapea = u_ospcl.s_ospcl.c_tapea;
sbin/restore/tape.c
1479
buf->c_inumber = u_ospcl.s_ospcl.c_inumber;
sbin/restore/tape.c
1480
buf->c_checksum = u_ospcl.s_ospcl.c_checksum;
sbin/restore/tape.c
1481
buf->c_mode = u_ospcl.s_ospcl.c_odinode.odi_mode;
sbin/restore/tape.c
1482
buf->c_uid = u_ospcl.s_ospcl.c_odinode.odi_uid;
sbin/restore/tape.c
1483
buf->c_gid = u_ospcl.s_ospcl.c_odinode.odi_gid;
sbin/restore/tape.c
1484
buf->c_size = u_ospcl.s_ospcl.c_odinode.odi_size;
sbin/restore/tape.c
1485
buf->c_rdev = u_ospcl.s_ospcl.c_odinode.odi_rdev;
sbin/restore/tape.c
1486
buf->c_atime = u_ospcl.s_ospcl.c_odinode.odi_atime;
sbin/restore/tape.c
1487
buf->c_mtime = u_ospcl.s_ospcl.c_odinode.odi_mtime;
sbin/restore/tape.c
1488
buf->c_count = u_ospcl.s_ospcl.c_count;
sbin/restore/tape.c
1489
memmove(buf->c_addr, u_ospcl.s_ospcl.c_addr, (long)256);
sbin/restore/tape.c
165
static void swap_old_header(struct s_ospcl *);
sbin/restore/tape.c
1785
swap_old_header(struct s_ospcl *os)