Просмотр исходного кода

u-a: Add missing space in --set-selections output

This was lost during the rewrite in C.
Guillem Jover лет назад: 15
Родитель
Сommit
898ad6a9d5
2 измененных файлов с 2 добавлено и 1 удалено
  1. 1 0
      debian/changelog
  2. 1 1
      utils/update-alternatives.c

+ 1 - 0
debian/changelog

@@ -11,6 +11,7 @@ dpkg (1.16.0) UNRELEASED; urgency=low
   * Add a new --status-logger option to dpkg, similar to --status-fd but
   * Add a new --status-logger option to dpkg, similar to --status-fd but
     instead invoke the command ourselves and feed the status information
     instead invoke the command ourselves and feed the status information
     to its standard input. Suggested by Raphaël Hertzog.
     to its standard input. Suggested by Raphaël Hertzog.
+  * Add missing space in update-alternative --set-selections output.
 
 
   [ Raphaël Hertzog ]
   [ Raphaël Hertzog ]
   * Fail properly when debian/source/format is empty. Closes: #600854
   * Fail properly when debian/source/format is empty. Closes: #600854

+ 1 - 1
utils/update-alternatives.c

@@ -1864,7 +1864,7 @@ alternative_set_selection(struct alternative_map *all, const char *name,
 static void
 static void
 alternative_set_selections(struct alternative_map *all, FILE* input, const char *desc)
 alternative_set_selections(struct alternative_map *all, FILE* input, const char *desc)
 {
 {
-	const char *prefix = "[" PROGNAME "--set-selections] ";
+	const char *prefix = "[" PROGNAME " --set-selections] ";
 
 
 	for (;;) {
 	for (;;) {
 		char line[1024], *res, *name, *status, *choice;
 		char line[1024], *res, *name, *status, *choice;