fix broken sentence in got.1 (was missing a word)
[got-portable.git] / lib / gotconfig.c
blob0899cb3a60f2ec26d7d1d2ab84ee0dc40d2f085d
1 /*
2 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/uio.h>
20 #include <sys/socket.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <errno.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <imsg.h>
29 #include <limits.h>
31 #include "got_compat.h"
33 #include "got_error.h"
34 #include "got_object.h"
35 #include "got_repository.h"
37 #include "got_lib_gotconfig.h"
39 #include "got_gotconfig.h"
41 void
42 got_gotconfig_free(struct got_gotconfig *conf)
44 int i;
46 if (conf == NULL)
47 return;
49 free(conf->author);
51 for (i = 0; i < conf->nremotes; i++)
52 got_repo_free_remote_repo_data(&conf->remotes[i]);
53 free(conf->remotes);
54 free(conf);
57 const char *
58 got_gotconfig_get_author(const struct got_gotconfig *conf)
60 return conf->author;
63 void
64 got_gotconfig_get_remotes(int *nremotes, const struct got_remote_repo **remotes,
65 const struct got_gotconfig *conf)
67 *nremotes = conf->nremotes;
68 *remotes = conf->remotes;
71 const char *
72 got_gotconfig_get_allowed_signers_file(const struct got_gotconfig *conf)
74 return conf->allowed_signers_file;
77 const char *
78 got_gotconfig_get_revoked_signers_file(const struct got_gotconfig *conf)
80 return conf->revoked_signers_file;
83 const char *
84 got_gotconfig_get_signer_id(const struct got_gotconfig *conf)
86 return conf->signer_id;