diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2007-04-17 10:20:44 +0000 |
---|---|---|
committer | Philipp Zabel <philipp.zabel@gmail.com> | 2007-04-17 10:20:44 +0000 |
commit | 226d248d826b389cf4bb064e391158f21c56d022 (patch) | |
tree | f7ba4a4d906844ce3434e4c97fdbbef6fc75c2ff /packages/gsm/files/qualcomm-extreply.patch | |
parent | 29d6dd95f7b21d1c4e87656a82b67b49d1ec9cd5 (diff) |
libgsmd: numeric.patch was applied upstream
- patch to understand qualcomm '@' extended replies
is still needed for universal
Diffstat (limited to 'packages/gsm/files/qualcomm-extreply.patch')
-rw-r--r-- | packages/gsm/files/qualcomm-extreply.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/gsm/files/qualcomm-extreply.patch b/packages/gsm/files/qualcomm-extreply.patch new file mode 100644 index 0000000000..010a8c9f31 --- /dev/null +++ b/packages/gsm/files/qualcomm-extreply.patch @@ -0,0 +1,13 @@ +Index: gsm/src/gsmd/atcmd.c +=================================================================== +--- gsm.orig/src/gsmd/atcmd.c 2007-04-02 09:59:16.000000000 +0200 ++++ gsm/src/gsmd/atcmd.c 2007-04-02 10:10:54.000000000 +0200 +@@ -207,7 +207,7 @@ + * TBD + */ + +- if (buf[0] == '+' || buf[0] == '%') { ++ if (buf[0] == '+' || buf[0] == '%' || buf[0] == '@') { + /* an extended response */ + const char *colon = strchr(buf, ':'); + if (!colon) { |