summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2013-07-15 06:14:46 +0200
committerAllan McRae <allan@archlinux.org>2013-08-21 03:12:30 +0200
commit247b9af02bd0d40109cc0ca40116a960c9f530e7 (patch)
treec06120d32730e9ca27eebc89cfb729aa5d90cf88 /src
parentc02b16c4cc00f7b33aad79207c15fb651903e9ba (diff)
downloadpacman-247b9af02bd0d40109cc0ca40116a960c9f530e7.tar.gz
pacman-247b9af02bd0d40109cc0ca40116a960c9f530e7.tar.xz
Do not refer to FlySpray numbers
These references to bug numbers assume we will forever be using that bug tracker. It is better to properly comment the code instead (which was done in almost all cases anyway). Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c2
-rw-r--r--src/pacman/util.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 942f7654..d9df5456 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -648,7 +648,7 @@ static int process_targname(alpm_list_t *dblist, const char *targname,
{
alpm_pkg_t *pkg = alpm_find_dbs_satisfier(config->handle, dblist, targname);
- /* #FS#23342 - skip ignored packages when user says no */
+ /* skip ignored packages when user says no */
if(alpm_errno(config->handle) == ALPM_ERR_PKG_IGNORED) {
pm_printf(ALPM_LOG_WARNING, _("skipping target: %s\n"), targname);
return 0;
diff --git a/src/pacman/util.c b/src/pacman/util.c
index 23c4009a..9eb0042e 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -1094,7 +1094,7 @@ double humanize_size(off_t bytes, const char target_unit, int precision,
*label = labels[index];
}
- /* fix FS#27924 so that it doesn't display negative zeroes */
+ /* do not display negative zeroes */
if(precision >= 0 && val < 0.0 &&
val > (-0.5 / simple_pow(10, precision))) {
val = 0.0;
@@ -1531,7 +1531,7 @@ static int question(short preset, const char *format, va_list args)
}
/* if stdin is piped, response does not get printed out, and as a result
- * a \n is missing, resulting in broken output (FS#27909) */
+ * a \n is missing, resulting in broken output */
if(!isatty(fd_in)) {
fprintf(stream, "%s\n", response);
}