[PATCH] ubi_tools: fix typo in strcpy

Denys Vlasenko vda.linux at googlemail.com
Sun Aug 4 19:08:12 UTC 2013


On Sun, Aug 4, 2013 at 5:08 AM, Paul B. Henson <henson at acm.org> wrote:
> Signed-off-by: Paul B. Henson <henson at acm.org>
> ---
>  miscutils/ubi_tools.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/miscutils/ubi_tools.c b/miscutils/ubi_tools.c
> index d923f1c..b713935 100644
> --- a/miscutils/ubi_tools.c
> +++ b/miscutils/ubi_tools.c
> @@ -122,7 +122,7 @@ int ubi_tools_main(int argc UNUSED_PARAM, char **argv)
>                                 + 2 * sizeof(int)*3 + /*just in case:*/ 16];
>  #define path_sys_class_ubi_ubi (path + sizeof("/sys/class/ubi/ubi")-1)
>
> -       strcpy(path_sys_class_ubi_ubi, "/sys/class/ubi/ubi");
> +       strcpy(path, "/sys/class/ubi/ubi");
>         memset(&req_structs, 0, sizeof(req_structs));
>
>         if (do_mkvol) {

Applied, thanks!


More information about the busybox mailing list