?
2012-02-29 08:43:09 UTC
I get some log messages "Unknown action yyy".
const char *reqType = ...;
if (reqType) {
if (strcmp(reqType, "xxx") == 0) {
...
} else if (strcmp(reqType, "yyy") == 0) {
...
} else {
printf("Unknown action %s\n", reqType);
}
}