Symbol: u_ospcl
sbin/restore/tape.c
1020
readtape((char *)(&u_ospcl.s_ospcl));
sbin/restore/tape.c
1021
if (checksum((int *)(&u_ospcl.s_ospcl)) == FAIL)
sbin/restore/tape.c
1023
if (u_ospcl.s_ospcl.c_magic != OFS_MAGIC) {
sbin/restore/tape.c
1024
if (swap32(u_ospcl.s_ospcl.c_magic) != OFS_MAGIC)
sbin/restore/tape.c
1030
swap_old_header(&u_ospcl.s_ospcl);
sbin/restore/tape.c
1034
buf->c_type = u_ospcl.s_ospcl.c_type;
sbin/restore/tape.c
1035
buf->c_date = u_ospcl.s_ospcl.c_date;
sbin/restore/tape.c
1036
buf->c_ddate = u_ospcl.s_ospcl.c_ddate;
sbin/restore/tape.c
1037
buf->c_volume = u_ospcl.s_ospcl.c_volume;
sbin/restore/tape.c
1038
buf->c_tapea = u_ospcl.s_ospcl.c_tapea;
sbin/restore/tape.c
1039
buf->c_inumber = u_ospcl.s_ospcl.c_inumber;
sbin/restore/tape.c
1040
buf->c_checksum = u_ospcl.s_ospcl.c_checksum;
sbin/restore/tape.c
1041
buf->c_mode = u_ospcl.s_ospcl.c_odinode.odi_mode;
sbin/restore/tape.c
1042
buf->c_uid = u_ospcl.s_ospcl.c_odinode.odi_uid;
sbin/restore/tape.c
1043
buf->c_gid = u_ospcl.s_ospcl.c_odinode.odi_gid;
sbin/restore/tape.c
1044
buf->c_size = u_ospcl.s_ospcl.c_odinode.odi_size;
sbin/restore/tape.c
1045
buf->c_rdev = u_ospcl.s_ospcl.c_odinode.odi_rdev;
sbin/restore/tape.c
1046
buf->c_atime = u_ospcl.s_ospcl.c_odinode.odi_atime;
sbin/restore/tape.c
1047
buf->c_mtime = u_ospcl.s_ospcl.c_odinode.odi_mtime;
sbin/restore/tape.c
1048
buf->c_count = u_ospcl.s_ospcl.c_count;
sbin/restore/tape.c
1049
memcpy(buf->c_addr, u_ospcl.s_ospcl.c_addr, 256);
sbin/restore/tape.c
999
union u_ospcl u_ospcl;