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:
ad65c72
)
Check the record syntax(es) given by the format command
author
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 24 Sep 2008 18:09:29 +0000
(20:09 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Wed, 24 Sep 2008 18:09:40 +0000
(20:09 +0200)
Check the record syntax(es) given by the format command and
report an error if they don't look good.
client/client.c
patch
|
blob
|
history
diff --git
a/client/client.c
b/client/client.c
index
4fd9406
..
c34d201
100644
(file)
--- a/
client/client.c
+++ b/
client/client.c
@@
-3278,6
+3278,12
@@
int cmd_format(const char *arg)
{
if (!strcmp(form_str, "none"))
break;
+ if (!yaz_string_to_oid_odr(yaz_oid_std(), CLASS_RECSYN, form_str, out))
+ {
+ printf("Bad format: %s\n", form_str);
+ recordsyntax_size = 0;
+ return 0;
+ }
recordsyntax_list[idx] = xstrdup(form_str);
cp += nor;
idx++;