sfdisk: use is_blkdev

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
This commit is contained in:
Davidlohr Bueso 2012-01-05 00:02:11 +01:00 committed by Karel Zak
parent f61a097bec
commit 4e4a25c0dd
1 changed files with 3 additions and 10 deletions

View File

@ -769,13 +769,6 @@ reread_ioctl(int fd) {
return 0;
}
static int
is_blockdev(int fd) {
struct stat statbuf;
return (fstat(fd, &statbuf) == 0 && S_ISBLK(statbuf.st_mode));
}
/* reread after writing */
static int
reread_disk_partition(char *dev, int fd) {
@ -783,10 +776,10 @@ reread_disk_partition(char *dev, int fd) {
fflush(stdout);
sync();
if (reread_ioctl(fd) && is_blockdev(fd)) {
if (reread_ioctl(fd) && is_blkdev(fd)) {
warnx(_("The command to re-read the partition table failed.\n"
"Run partprobe(8), kpartx(8) or reboot your system now,\n"
"before using mkfs\n"));
"Run partprobe(8), kpartx(8) or reboot your system now,\n"
"before using mkfs\n"));
return 0;
}