Merge pull request #227 from Arnavion/utf8-everywhere

utf8-everywhere part 3
This commit is contained in:
bviktor 2012-11-04 09:31:46 -08:00
commit 7873bfe211
1 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ scrollback_save (session *sess, char *text)
stamp = time (0); stamp = time (0);
if (sizeof (stamp) == 4) /* gcc will optimize one of these out */ if (sizeof (stamp) == 4) /* gcc will optimize one of these out */
buf = g_strdup_printf ("T %d", (int) stamp); buf = g_strdup_printf ("T %d ", (int) stamp);
else else
buf = g_strdup_printf ("T %" G_GINT64_FORMAT " ", (gint64)stamp); buf = g_strdup_printf ("T %" G_GINT64_FORMAT " ", (gint64)stamp);
write (sess->scrollfd, buf, strlen (buf)); write (sess->scrollfd, buf, strlen (buf));
@ -705,7 +705,7 @@ log_write (session *sess, char *text)
server_get_network (sess->server, FALSE)); server_get_network (sess->server, FALSE));
if (file) if (file)
{ {
if (access (file, F_OK) != 0) if (g_access (file, F_OK) != 0)
{ {
close (sess->logfd); close (sess->logfd);
sess->logfd = log_open_file (sess->server->servername, sess->channel, sess->logfd = log_open_file (sess->server->servername, sess->channel,