mirror of https://github.com/BOINC/boinc.git
client: fix compile error
svn path=/trunk/boinc/; revision=15811
This commit is contained in:
parent
0ed39fcd5e
commit
31d0997a61
|
@ -6442,3 +6442,9 @@ David 12 Aug 2008
|
||||||
|
|
||||||
html/project/
|
html/project/
|
||||||
project_specific_prefs.inc
|
project_specific_prefs.inc
|
||||||
|
|
||||||
|
Charlie 12 Aug 2008
|
||||||
|
- client: fix compile error.
|
||||||
|
|
||||||
|
client/
|
||||||
|
client_msgs.C
|
||||||
|
|
|
@ -63,7 +63,7 @@ void record_message(PROJECT* p, int priority, int now, char* message) {
|
||||||
strcpy(mdp->project_name, "");
|
strcpy(mdp->project_name, "");
|
||||||
if (p) {
|
if (p) {
|
||||||
strlcpy(
|
strlcpy(
|
||||||
mdp->project_name, sizeof(mdp->project_name), p->get_project_name()
|
mdp->project_name, p->get_project_name(), sizeof(mdp->project_name)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
mdp->priority = priority;
|
mdp->priority = priority;
|
||||||
|
|
Loading…
Reference in New Issue