#elif defined (__HAIKU__)
const char *cnfpath = "touch /boot/home/config/settings/sp/sp.conf";
#else
- const char *cnfpath = "touch ~/config/sp.conf";
+ const char *cnfpath = "touch ~/.config/sp.conf";
#endif
printf("コンフィグファイルを見つけられません。"
"「%s」を実効して下さい。\n", cnfpath);
int isSpecial = 0;
for (size_t j = 0; j < strlen(pass); j++) {
- if (isupper(pass[j])) isUpper = 1;
- else if (islower(pass[j])) isLower = 1;
- else if (isdigit(pass[j])) isDigit = 1;
+ if (isupper((int)pass[j])) isUpper = 1;
+ else if (islower((int)pass[j])) isLower = 1;
+ else if (isdigit((int)pass[j])) isDigit = 1;
else if (strchr(spchar, pass[j])) isSpecial = 1;
}
cnf->syncenable = 0;
cnf->passtimeout = 45;
cnf->otptimeout = 30;
- strncpy(cnf->language, "ja", sizeof(cnf->language) - 1);
+ memcpy(cnf->language, "ja", sizeof(cnf->language) - 1);
cnf->language[sizeof(cnf->language) - 1] = '\0';
cnf->syncname[sizeof(cnf->syncname) - 1] = '\0';