projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e141e73
)
Fix small (yet big) bug in show_display
author
Mark Spencer
<markster@digium.com>
Tue, 2 Mar 2004 23:56:37 +0000
(23:56 +0000)
committer
Mark Spencer
<markster@digium.com>
Tue, 2 Mar 2004 23:56:37 +0000
(23:56 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2307
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_adsiprog.c
patch
|
blob
|
history
diff --git
a/apps/app_adsiprog.c
b/apps/app_adsiprog.c
index
696b1cd
..
7b6e06d
100755
(executable)
--- a/
apps/app_adsiprog.c
+++ b/
apps/app_adsiprog.c
@@
-666,7
+666,7
@@
static int showdisplay(char *buf, char *name, int id, char *args, struct adsi_sc
}
buf[0] = id;
- buf[1] = (cmd << 6) | (disp->id & 0x2f);
+ buf[1] = (cmd << 6) | (disp->id & 0x3f);
buf[2] = ((line & 0x1f) << 3) | (flag & 0x7);
return 3;
}