summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-05-01 12:55:40 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:48:09 +0100
commit92dfc46bfe1cffa6a1f780a91120d4f02896bc43 (patch)
treed78f99f8f2b134685b4ca13e5270d6b7fffd4dc7
parentd00704447a2f95f49a06925d40576522ffbfe850 (diff)
downloadlive-boot-92dfc46bfe1cffa6a1f780a91120d4f02896bc43.tar.gz
live-boot-92dfc46bfe1cffa6a1f780a91120d4f02896bc43.zip
Merging casper 1.213.
-rw-r--r--docs/ChangeLog.casper6
-rwxr-xr-xscripts/live-bottom/15autologin2
2 files changed, 7 insertions, 1 deletions
diff --git a/docs/ChangeLog.casper b/docs/ChangeLog.casper
index 3ad3a18..8f23057 100644
--- a/docs/ChangeLog.casper
+++ b/docs/ChangeLog.casper
@@ -1,3 +1,9 @@
+casper (1.213) lucid; urgency=low
+
+ * printf does not evaluate escape characters in the argument string.
+
+ -- Evan Dandrea <evand@ubuntu.com> Mon, 11 Jan 2010 11:02:12 +0000
+
casper (1.212) lucid; urgency=low
[ Martin Pitt ]
diff --git a/scripts/live-bottom/15autologin b/scripts/live-bottom/15autologin
index 143e9f4..0b80f84 100755
--- a/scripts/live-bottom/15autologin
+++ b/scripts/live-bottom/15autologin
@@ -72,7 +72,7 @@ TimedLoginDelay=10"
then
sed -i "s/\[daemon\]/\[daemon\]\n$AutologinParameters/" $GDMCustomFile
else
- printf '[daemon]\n%s' "$AutologinParameters" >> $GDMCustomFile
+ printf "[daemon]\n$AutologinParameters" >> $GDMCustomFile
fi
fi
fi