Forked from grahamhayes/gist:9495a59d947a6883b46ff82a8b6a4b39
Created
February 22, 2019 16:54
-
-
Save evrardjp/6a9a5a4bb3f9a53d51b9e338ecaa758d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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