From 9fe6dadcecc6c487d317bffac3db4a916368ff51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Thu, 23 Dec 2004 15:44:24 +0000 Subject: [PATCH] Fixed. * netlist.c: (glibtop_get_netlist_s): Fixed. --- sysdeps/stub/ChangeLog | 4 ++++ sysdeps/stub/netlist.c | 11 ++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/sysdeps/stub/ChangeLog b/sysdeps/stub/ChangeLog index 2b8c52a4..7b65f2cb 100644 --- a/sysdeps/stub/ChangeLog +++ b/sysdeps/stub/ChangeLog @@ -1,3 +1,7 @@ +2004-12-23 Benoît Dejean + + * netlist.c: (glibtop_get_netlist_s): Fixed. + 2004-11-13 Benoît Dejean * Makefile.am: diff --git a/sysdeps/stub/netlist.c b/sysdeps/stub/netlist.c index aad043c7..0f1fe569 100644 --- a/sysdeps/stub/netlist.c +++ b/sysdeps/stub/netlist.c @@ -1,9 +1,6 @@ /* $Id$ */ -/* Copyright (C) 1998-99 Martin Baulig - This file is part of LibGTop 1.0. - - Contributed by Martin Baulig , April 1998. +/* This file is part of LibGTop 2.0. LibGTop is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,10 +31,10 @@ glibtop_init_netlist_s (glibtop *server) server->sysdeps.netlist = _glibtop_sysdeps_netlist; } -/* Provides load averange. */ - -void +char** glibtop_get_netlist_s (glibtop *server, glibtop_netlist *buf) { memset (buf, 0, sizeof (glibtop_netlist)); + + return NULL; }