diff options
author | Simon Quigley <tsimonq2@ubuntu.com> | 2017-06-19 14:38:48 -0500 |
---|---|---|
committer | Simon Quigley <tsimonq2@ubuntu.com> | 2017-06-19 14:38:48 -0500 |
commit | 7c47b5b9584f5011aeba18d7e1b26b3d3124825f (patch) | |
tree | 11b07e1c73a22a6ec5ebd710c9a72e972a4c571b /syncmanager.c | |
parent | 4979bb6cbbbe39eb44c32530cd13f86bf44e5d77 (diff) |
Import Upstream version 0.5.1
Diffstat (limited to 'syncmanager.c')
-rw-r--r-- | syncmanager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syncmanager.c b/syncmanager.c index 12b0465e..37788a7b 100644 --- a/syncmanager.c +++ b/syncmanager.c @@ -1,6 +1,6 @@ /* * HardInfo - Displays System Information - * Copyright (C) 2003-2007 Leandro A. F. Pereira <leandro@hardinfo.org> + * Copyright (C) 2003-2009 Leandro A. F. Pereira <leandro@hardinfo.org> * * 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 @@ -107,7 +107,7 @@ void sync_manager_add_entry(SyncEntry * entry) DEBUG("registering syncmanager entry ''%s''", entry->fancy_name); entry->selected = TRUE; - entries = g_slist_prepend(entries, entry); + entries = g_slist_append(entries, entry); #else DEBUG("libsoup support is disabled."); #endif /* HAS_LIBSOUP */ |