- fix InstallTask code when a pkgRecord ends
with a single '\n' (thanks to Soren Hansen for reporting)
// build regexp for the task
char S[300];
-- snprintf(S, sizeof(S), "^Task:.*[^a-z]%s[^a-z].*\n", taskname);
++ snprintf(S, sizeof(S), "^Task:.*[^a-z\n]%s[^a-z].*$", taskname);
regcomp(&Pattern,S, REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
bool found = false;
+apt (0.7.3) unstable; urgency=low
+
+ * fixed compile errors with g++ 7.3 (thanks to
+ Daniel Burrows, closes: #429378)
+ * fix FTFBFS by changing build-depends to
+ libcurl4-gnutls-dev (closes: #428363)
++ * cmdline/apt-get.cc:
++ - fix InstallTask code when a pkgRecord ends
++ with a single '\n' (thanks to Soren Hansen for reporting)
+
+ --
+
apt (0.7.2) unstable; urgency=low
* merged the debian/experimental changes back