Browse code

fix compilation error

git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@2042 77e5149b-7576-45b1-b177-96237e5ba77b

Tomasz Kojm authored on 2006/06/22 16:37:14
Showing 1 changed files
... ...
@@ -47,7 +47,6 @@
47 47
 #include "output.h"
48 48
 #include "misc.h"
49 49
 #include "str.h"
50
-#include "strrcpy.h" /* libclamav */
51 50
 
52 51
 #ifdef PF_INET
53 52
 # define SOCKET_INET	PF_INET
... ...
@@ -526,8 +525,8 @@ void move_infected(const char *filename, const struct optstruct *opt)
526 526
 	exit(2);
527 527
     }
528 528
 
529
-    if(!(strrcpy(movefilename, movedir))) {
530
-        logg("^strrcpy() returned NULL\n");
529
+    if(!(cli_strrcpy(movefilename, movedir))) {
530
+        logg("^cli_strrcpy() returned NULL\n");
531 531
         notmoved++;
532 532
         free(movefilename);
533 533
         return;