Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evrardjp/6a9a5a4bb3f9a53d51b9e338ecaa758d to your computer and use it in GitHub Desktop.
Save evrardjp/6a9a5a4bb3f9a53d51b9e338ecaa758d to your computer and use it in GitHub Desktop.
graham@jump:~/repos/github/phhusson/quassel-irssi/core/lib$ git diff
diff --git a/getters.c b/getters.c
index e6bb564..51da7b7 100644
--- a/getters.c
+++ b/getters.c
@@ -160,6 +160,8 @@ void get_variant_t(char **buf, int type) {
case 16:
get_date(buf);
break;
+ case 22:
+ break;
case 127:
{
char *usertype=get_bytearray(buf);
@@ -173,7 +175,6 @@ void get_variant_t(char **buf, int type) {
get_map(buf);
} else {
printf("Unsupported usertype = %s (%d)\n", usertype, __LINE__);
- abort();
}
}
break;
@@ -181,7 +182,8 @@ void get_variant_t(char **buf, int type) {
get_short(buf);
break;
default:
- abort();
+ printf("%d\n", type);
+ //abort();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment