32a33 > #include 113c114 < char rmthost[__MAX_STR_LEN__]; --- > char *rmthost=NULL; 126d126 < rmthost[0]='\0'; 128c128,133 < strcpy (rmthost, argv[2]); --- > rmthost=strdup((const char *)argv[2]); > else > { > rmthost=(char *)malloc(sizeof(char)); > rmthost[0]='\0'; > } 143c148 < if (rmthost != 0) --- > if (rmthost != NULL)