From: Eric Andersen Date: Fri, 12 Dec 2003 00:08:57 +0000 (-0000) Subject: Fix compile when CONFIG_FEATURE_HDPARM_GET_IDENTITY is disabled X-Git-Tag: 1_00_pre5~49 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=416c24224dce4abc69708031b74a0e16127af874;p=oweals%2Fbusybox.git Fix compile when CONFIG_FEATURE_HDPARM_GET_IDENTITY is disabled --- diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 6580bf592..16ab7e67d 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c @@ -507,6 +507,8 @@ static void bb_ioctl_on_off(int fd, int request, void *argp, const char *string, on_off((unsigned long) argp); } } + +#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY static void if_else_printf(unsigned long i, char *fmt1, char *fmt2, ... ) { va_list ap; @@ -529,6 +531,13 @@ static void xprint_ascii(uint16_t *val ,int i, char * string, int n) } } +static void if_strcat(unsigned long test, char *modes, char *string) +{ + if (test) + strcat(modes,string); +} +#endif + static void sync_and_sleep(int i) { sync(); @@ -568,12 +577,6 @@ unsigned long int set_flag(char *p, char max) return 0; } -static void if_strcat(unsigned long test, char *modes, char *string) -{ - if (test) - strcat(modes,string); -} - /* end of busybox specific stuff */ #ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY