projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
bd6a204
)
Fix -zippyVariants option
author
H.G. Muller
<h.g.muller@hccnet.nl>
Tue, 27 Aug 2013 20:55:52 +0000 (22:55 +0200)
committer
H.G. Muller
<h.g.muller@hccnet.nl>
Tue, 27 Aug 2013 20:58:43 +0000 (22:58 +0200)
Due to the change of cps->variants from (char []) to (char *), copying
zippyVariants to it on behalf of v1 engines would no longer work. This
is fixed by using ASSIGN() in stead of safeStrCpy().
zippy.c
patch
|
blob
|
history
diff --git
a/zippy.c
b/zippy.c
index
9453c90
..
09e8c7d
100644
(file)
--- a/
zippy.c
+++ b/
zippy.c
@@
-200,7
+200,7
@@
ZippyInit ()
if (p != NULL) {
appData.zippyVariants = p;
}
- safeStrCpy(first.variants, appData.zippyVariants, sizeof(first.variants)/sizeof(first.variants[0]));
+ ASSIGN(first.variants, appData.zippyVariants);
srandom(time(NULL));
}