1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Add newline after pid in pidfile

This commit is contained in:
monty@mysql.com
2003-12-09 20:17:28 +02:00
parent 0fb110308d
commit e82018e34f

View File

@@ -1465,7 +1465,7 @@ static void start_signal_handler(void)
O_WRONLY | O_TRUNC, MYF(MY_WME))) >= 0)
{
char buff[21];
sprintf(buff,"%lu",(ulong) getpid());
sprintf(buff,"%lu\n",(ulong) getpid());
(void) my_write(pidFile, buff,strlen(buff),MYF(MY_WME));
(void) my_close(pidFile,MYF(0));
}