mirror of
https://github.com/sheumann/hush.git
synced 2024-12-24 12:29:47 +00:00
brctl: fix build failure by s/strtotimeval/bb_strtotimeval/ (android has strtotimeval)
Signed-off-by: Tias Guns <tias@ulyssis.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
52de9c7141
commit
49b8e72012
@ -67,7 +67,7 @@
|
|||||||
# include <linux/if_bridge.h>
|
# include <linux/if_bridge.h>
|
||||||
|
|
||||||
/* FIXME: These 4 funcs are not really clean and could be improved */
|
/* FIXME: These 4 funcs are not really clean and could be improved */
|
||||||
static ALWAYS_INLINE void strtotimeval(struct timeval *tv,
|
static ALWAYS_INLINE void bb_strtotimeval(struct timeval *tv,
|
||||||
const char *time_str)
|
const char *time_str)
|
||||||
{
|
{
|
||||||
double secs;
|
double secs;
|
||||||
@ -104,7 +104,7 @@ static void jiffies_to_tv(struct timeval *tv, unsigned long jiffies)
|
|||||||
static unsigned long str_to_jiffies(const char *time_str)
|
static unsigned long str_to_jiffies(const char *time_str)
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
strtotimeval(&tv, time_str);
|
bb_strtotimeval(&tv, time_str);
|
||||||
return tv_to_jiffies(&tv);
|
return tv_to_jiffies(&tv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user