Deleted Added
sdiff udiff text old ( 17261 ) new ( 21149 )
full compact
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

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

77
78int
79main(argc, argv)
80 int argc;
81 char *argv[];
82{
83 int ch;
84 ino_t ino;
85 char *inputdev;
86 char *symtbl = "./restoresymtable";
87 char *p, name[MAXPATHLEN];
88
89 /* Temp files should *not* be readable. We set permissions later. */
90 (void) umask(077);
91
92 if (argc < 2)
93 usage();
94
95 if ((inputdev = getenv("TAPE")) == NULL)
96 inputdev = _PATH_DEFTAPE;
97 obsolete(&argc, &argv);
98 while ((ch = getopt(argc, argv, "b:cdf:himNRrs:tvxy")) != EOF)
99 switch(ch) {
100 case 'b':
101 /* Change default tape blocksize. */
102 bflag = 1;
103 ntrec = strtol(optarg, &p, 10);
104 if (*p)

--- 248 unchanged lines hidden ---