summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/script/mkproto.awk3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk
index 760a2df727..1328a42eac 100644
--- a/source3/script/mkproto.awk
+++ b/source3/script/mkproto.awk
@@ -8,12 +8,13 @@ BEGIN {
print "#ifndef",headername
print "#define",headername
+ print ""
print "/* This file is automatically generated with \"make proto\". DO NOT EDIT */"
print ""
}
END {
- print "#endif /* _PROTO_H_ */"
+ print "#endif /* ",headername," */"
}
{