]> git.ipfire.org Git - people/ms/pakfire.git/blame - src/cli/lib/upload_list.c
cli: client: Fix passing context pointer
[people/ms/pakfire.git] / src / cli / lib / upload_list.c
CommitLineData
125a95c9
MT
1/*#############################################################################
2# #
3# Pakfire - The IPFire package management system #
4# Copyright (C) 2023 Pakfire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
21#include <pakfire/ctx.h>
22
23#include "command.h"
24#include "upload_list.h"
25
26static const char* doc = "Lists all uploads";
27
28int cli_upload_list(void* data, int argc, char* argv[]) {
29 struct pakfire_ctx* ctx = data;
30 int r;
31
32 // Parse the command line
33 r = cli_parse(NULL, NULL, NULL, doc, NULL, argc, argv, NULL);
34 if (r)
35 goto ERROR;
36
37 // XXX TODO
38
39ERROR:
40 return r;
41}