projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29846d8
)
client: proper recid passing
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 4 Aug 2011 10:58:40 +0000
(12:58 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 4 Aug 2011 10:58:40 +0000
(12:58 +0200)
client/client.c
patch
|
blob
|
history
diff --git
a/client/client.c
b/client/client.c
index
4cf2207
..
3665ade
100644
(file)
--- a/
client/client.c
+++ b/
client/client.c
@@
-2377,9
+2377,9
@@
static int cmd_update_common(const char *arg, int version)
#if YAZ_HAVE_XML2
if (protocol == PROTO_HTTP)
- return send_SRW_update(action_no, recid_buf, rec_buf, rec_len);
+ return send_SRW_update(action_no, recid, rec_buf, rec_len);
#endif
- return send_Z3950_update(version, action_no, recid_buf, rec_buf, rec_len);
+ return send_Z3950_update(version, action_no, recid, rec_buf, rec_len);
}
#if YAZ_HAVE_XML2