Home | History | Annotate | Download | only in newfs_lfs

Lines Matching defs:special

23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
102 char *progname, *special;
278 special = argv[0];
279 if (strchr(special, '/') == NULL) {
281 special);
284 _PATH_DEV, special);
285 special = device;
288 fso = open(special, O_RDWR, DEFFILEMODE);
291 fso = open(special, O_CREAT | O_RDWR, DEFFILEMODE);
301 fatal("%s: %s", special, strerror(errno));
306 fsi = open(special, O_RDONLY);
308 fatal("%s: %s", special, strerror(errno));
310 fatal("%s: %s", special, strerror(errno));
315 fatal("%s: neither a character special device "
316 "nor a regular file", special);
327 if (getdiskinfo(special, fsi, disktype, &geo, &dkw) == -1)
328 errx(1, lmsg, special);
385 warnx("%s is not a character special device, ignoring -A", special);
472 fprintf(stderr, "usage: newfs_lfs [ -fsoptions ] special-device\n");