diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-03 09:43:16 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-03 09:43:16 +0000 |
commit | e24c22e308f3dfc0642a542ff2fd7158af489fd0 (patch) | |
tree | e166f272a387a4d946eb76359b4fca361dfcbbd4 /lib/libalpm/conflict.c | |
parent | 7f5dada8851c3b40ba44ed92e46315cefa9006b2 (diff) | |
download | pacman-e24c22e308f3dfc0642a542ff2fd7158af489fd0.tar.xz |
* A little more hacking with wchar_t output, but nothing really changed in
it. Eventually we'll make progress.
* Rewrote the _alpm_splitdep function to behave more like all our other
function calls. Use heap instead of stack allocation for the depend struct,
so now it needs to be freed by the caller.
Diffstat (limited to 'lib/libalpm/conflict.c')
-rw-r--r-- | lib/libalpm/conflict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index d8843bda..96c0ac84 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -47,14 +47,14 @@ #include "conflict.h" -/** See if potential conflict 'name' matches package 'pkg' +/** See if potential conflict 'name' matches package 'pkg'. * @param target the name of the parent package we're checking * @param depname the name of the dependency we're checking * @param pkg the package to check * @param conflict the name of the possible conflict * @return A depmissing struct indicating the conflict * @note The first two paramters are here to simplify the addition - * of new 'depmiss' objects + * of new 'depmiss' objects. * * TODO WTF is a 'depmissing' doing indicating a conflict?? */ |