diff options
Diffstat (limited to 'net/9p/protocol.c')
| -rw-r--r-- | net/9p/protocol.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/9p/protocol.c b/net/9p/protocol.c index e7541d5b0118..77d3aab4036b 100644 --- a/net/9p/protocol.c +++ b/net/9p/protocol.c | |||
| @@ -341,7 +341,8 @@ p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt, | |||
| 341 | } | 341 | } |
| 342 | break; | 342 | break; |
| 343 | case '?': | 343 | case '?': |
| 344 | if (proto_version != p9_proto_2000u) | 344 | if ((proto_version != p9_proto_2000u) && |
| 345 | (proto_version != p9_proto_2000L)) | ||
| 345 | return 0; | 346 | return 0; |
| 346 | break; | 347 | break; |
| 347 | default: | 348 | default: |
| @@ -488,7 +489,8 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt, | |||
| 488 | } | 489 | } |
| 489 | break; | 490 | break; |
| 490 | case '?': | 491 | case '?': |
| 491 | if (proto_version != p9_proto_2000u) | 492 | if ((proto_version != p9_proto_2000u) && |
| 493 | (proto_version != p9_proto_2000L)) | ||
| 492 | return 0; | 494 | return 0; |
| 493 | break; | 495 | break; |
| 494 | default: | 496 | default: |
