From a40372d82de2f1897d72ce6609b904925d7ce330 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Mon, 12 Nov 2012 12:31:16 +0100 Subject: [PATCH] fixed typo in strcpy() function call --- src/libimcv/plugins/imv_os/imv_os_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libimcv/plugins/imv_os/imv_os_state.c b/src/libimcv/plugins/imv_os/imv_os_state.c index 754489eda..44389f24f 100644 --- a/src/libimcv/plugins/imv_os/imv_os_state.c +++ b/src/libimcv/plugins/imv_os/imv_os_state.c @@ -294,7 +294,7 @@ METHOD(imv_state_t, get_remediation_instructions, bool, enumerator->destroy(enumerator); pos = this->instructions = malloc(len + 1); - strcopy(pos, *string); + strcpy(pos, *string); pos += strlen(*string); enumerator = this->bad_packages->create_enumerator(this->bad_packages);