summaryrefslogtreecommitdiff
path: root/csu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-09-20 04:59:24 +0000
committerUlrich Drepper <drepper@redhat.com>1999-09-20 04:59:24 +0000
commit3a4cbb41861badaf557b1896542c00d4f40d9f45 (patch)
tree156bc6fb89961a5905239aa7dbc1affa3fd06b5d /csu
parent1d8004b2760e61d7e9fd67caa42bd6d0004a9f9d (diff)
Update.
* manual/filesys.texi (Testing File Access): Correct description of SUID. 1999-08025 H.J. Lu <hjl@gnu.org> * csu/defs.awk (.end): Only match with leading white spaces. (.align): Likewise. 1999-09-19 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'csu')
-rw-r--r--csu/defs.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/csu/defs.awk b/csu/defs.awk
index ac73e1a3ad..a006c983e2 100644
--- a/csu/defs.awk
+++ b/csu/defs.awk
@@ -1,5 +1,5 @@
-/\.end/ { need_end = 1 }
-/\.align/ { if($2 > max) max = $2; }
+/^[ ]*\.end/ { need_end = 1 }
+/^[ ]*\.align/ { if($2 > max) max = $2; }
END {
if(need_end)