Deleted Added
full compact
restore.c (28034) restore.c (29574)
1/*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 803 unchanged lines hidden (view full) ---

812 register ino_t i;
813
814 vprintf(stdout, "Check the symbol table.\n");
815 for (i = WINO; i < maxino; i++) {
816 for (ep = lookupino(i); ep != NULL; ep = ep->e_links) {
817 ep->e_flags &= ~KEEP;
818 if (ep->e_type == NODE)
819 ep->e_flags &= ~(NEW|EXISTED);
1/*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 803 unchanged lines hidden (view full) ---

812 register ino_t i;
813
814 vprintf(stdout, "Check the symbol table.\n");
815 for (i = WINO; i < maxino; i++) {
816 for (ep = lookupino(i); ep != NULL; ep = ep->e_links) {
817 ep->e_flags &= ~KEEP;
818 if (ep->e_type == NODE)
819 ep->e_flags &= ~(NEW|EXISTED);
820 if (ep->e_flags != NULL)
820 if (ep->e_flags != 0)
821 badentry(ep, "incomplete operations");
822 }
823 }
824}
825
826/*
827 * Compare with the directory structure on the tape
828 * A paranoid check that things are as they should be.

--- 27 unchanged lines hidden ---
821 badentry(ep, "incomplete operations");
822 }
823 }
824}
825
826/*
827 * Compare with the directory structure on the tape
828 * A paranoid check that things are as they should be.

--- 27 unchanged lines hidden ---