X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/319d7107dfbed2e6248f61ad463fa6ac55ebe178..5dcfc065d123f6643b12ed1766c7976e58b6941a:/disobedience/client.c diff --git a/disobedience/client.c b/disobedience/client.c index 80aef88..45c6c0a 100644 --- a/disobedience/client.c +++ b/disobedience/client.c @@ -2,20 +2,18 @@ * This file is part of DisOrder. * Copyright (C) 2006, 2007, 2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . */ /** @file disobedience/client.c * @brief GLIB integration for @ref lib/eclient.c client @@ -39,7 +37,7 @@ static gboolean gtkclient_prepare(GSource *source, gint *timeout) { const struct eclient_source *esource = (struct eclient_source *)source; D(("gtkclient_prepare")); - if(time(0) > esource->last_poll + 10) + if(xtime(0) > esource->last_poll + 10) return TRUE; /* timed out */ *timeout = 3000/*milliseconds*/; return FALSE; /* please poll */ @@ -67,7 +65,7 @@ static gboolean gtkclient_dispatch(GSource *source, mode |= DISORDER_POLL_READ; if(revents & (G_IO_OUT|G_IO_HUP|G_IO_ERR)) mode |= DISORDER_POLL_WRITE; - time(&esource->last_poll); + xtime(&esource->last_poll); disorder_eclient_polled(esource->client, mode); return TRUE; /* ??? not documented */ }