GIT.Harvie.CZ
/
mirrors
/
libpurple-core-answerscripts.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3598be
)
Moved some variables from global to local scope in order to fix github issue #5 and...
author
Harvie
<tomas@mudrunka.cz>
Tue, 28 Sep 2010 20:13:00 +0000
(22:13 +0200)
committer
Harvie
<tomas@mudrunka.cz>
Tue, 28 Sep 2010 20:13:00 +0000
(22:13 +0200)
"When script is executing&new conversation opens, output gets sent to new conversation"
answerscripts.c
patch
|
blob
|
blame
|
history
diff --git
a/answerscripts.c
b/answerscripts.c
index f84dcc6c00352f760948234b4080a2ab5abe9b24..ca1a412b9dc3c81f577871f09468185e620d95cf 100755
(executable)
--- a/
answerscripts.c
+++ b/
answerscripts.c
@@
-32,8
+32,6
@@
char *message = NULL;
char *hook_script = NULL;
-char response[ANSWERSCRIPTS_LINE_LENGTH+1];
-int i;
typedef struct {
FILE *pipe;
@@
-41,6
+39,8
@@
typedef struct {
} answerscripts_job;
int answerscripts_process_message_cb(answerscripts_job *job) {
+ int i;
+ char response[ANSWERSCRIPTS_LINE_LENGTH+1];
FILE *pipe = job->pipe;
PurpleConversation *conv = job->conv;
This page took
0.12423 seconds
and
4
git commands to generate.