diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2008-08-26 12:57:08 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-01-12 23:59:30 -0600 |
commit | 4da70d800a25881f525498a451ae21b398a1d5b1 (patch) | |
tree | 6c3446c1ec32e5f8a8acd28d1b0b6bb82684eef7 /src/util/testdb.c | |
parent | a888f377a5c805f1da24b556e6a4a9e3678d8eb3 (diff) |
Rename alpm_get_md5sum to alpm_compute_md5sum and alpm_dep_get_string to alpm_dep_compute_string
This patch introduces the following function name convention:
_compute_ in function name: the return value must be freed.
_get_ in function name: the return value must not be freed.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/util/testdb.c')
-rw-r--r-- | src/util/testdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/testdb.c b/src/util/testdb.c index 8a66819f..cbff5784 100644 --- a/src/util/testdb.c +++ b/src/util/testdb.c @@ -105,7 +105,7 @@ int checkdeps(alpm_list_t *pkglist) for(i = data; i; i = alpm_list_next(i)) { pmdepmissing_t *miss = alpm_list_getdata(i); pmdepend_t *dep = alpm_miss_get_dep(miss); - char *depstring = alpm_dep_get_string(dep); + char *depstring = alpm_dep_compute_string(dep); printf("missing dependency for %s : %s\n", alpm_miss_get_target(miss), depstring); free(depstring); |