arp.c (cfe30d02adda7c3b5c76156ac52d50d8cab325d9) arp.c (876fc15d472e97728df5dfc85a678c41fe2cefa6)
1/*
2 * Copyright (c) 1984, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Sun Microsystems, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

182 (void)delete(argv[0]);
183 rtn = set(argc, argv) ? 1 : 0;
184 break;
185 case F_DELETE:
186 if (aflag) {
187 if (argc != 0)
188 usage();
189 search(0, nuke_entry);
1/*
2 * Copyright (c) 1984, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Sun Microsystems, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

182 (void)delete(argv[0]);
183 rtn = set(argc, argv) ? 1 : 0;
184 break;
185 case F_DELETE:
186 if (aflag) {
187 if (argc != 0)
188 usage();
189 search(0, nuke_entry);
190 } else
190 } else {
191 if (argc != 1)
192 usage();
191 rtn = delete(argv[0]);
193 rtn = delete(argv[0]);
194 }
192 break;
193 case F_FILESET:
194 if (argc != 1)
195 usage();
196 rtn = file(argv[0]);
197 break;
198 }
199

--- 662 unchanged lines hidden ---
195 break;
196 case F_FILESET:
197 if (argc != 1)
198 usage();
199 rtn = file(argv[0]);
200 break;
201 }
202

--- 662 unchanged lines hidden ---