Revert broken part of r5044 (thanks to Igor Kovalenko for spotting)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5089 c046a42c-6fe2-441c-8c8c-71466251a162
master
blueswir1 2008-08-26 17:07:04 +00:00
parent c17e9c452d
commit 4d5e2b3cc6
1 changed files with 1 additions and 1 deletions

View File

@ -2826,7 +2826,7 @@ static void
oappend (s)
const char *s;
{
pstrcpy (obufp, sizeof(obuf) - (size_t)(obufp - obuf), s);
strcpy (obufp, s);
obufp += strlen (s);
}