SVN r65 (trunk)

This commit is contained in:
Christoph Oelckers 2006-04-23 09:02:19 +00:00
commit b229d07500
6 changed files with 17 additions and 7 deletions

View file

@ -294,8 +294,8 @@ static void ParseLock()
}
}
// copy the messages if the other one does not exist
if (!lock->remotemsg && lock->message) lock->remotemsg=strdup(lock->message);
if (!lock->message && lock->remotemsg) lock->message=strdup(lock->remotemsg);
if (!lock->remotemsg && lock->message) lock->remotemsg = copystring(lock->message);
if (!lock->message && lock->remotemsg) lock->message = copystring(lock->remotemsg);
lock->keylist.ShrinkToFit();
}