d921b2ecc0
things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
34 lines
747 B
C
34 lines
747 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* Utility routines.
|
|
*
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
char *find_block_device(char *path)
|
|
{
|
|
DIR *dir;
|
|
struct dirent *entry;
|
|
struct stat st;
|
|
dev_t dev;
|
|
char *retpath=NULL;
|
|
|
|
if(stat(path, &st) || !(dir = opendir("/dev"))) return NULL;
|
|
dev = (st.st_mode & S_IFMT) == S_IFBLK ? st.st_rdev : st.st_dev;
|
|
while((entry = readdir(dir)) != NULL) {
|
|
char devpath[PATH_MAX];
|
|
sprintf(devpath,"/dev/%s", entry->d_name);
|
|
if(!stat(devpath, &st) && S_ISBLK(st.st_mode) && st.st_rdev == dev) {
|
|
retpath = xstrdup(devpath);
|
|
break;
|
|
}
|
|
}
|
|
closedir(dir);
|
|
|
|
return retpath;
|
|
}
|