From 53972b460c6bc56178244ac53cf71e11bba6c37a Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Sat, 17 May 2008 01:28:26 +0000 Subject: Add $PostgreSQL$ markers to a lot of files that were missing them. This particular batch was just for *.c and *.h file. The changes were made with the following 2 commands: find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *' find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */' --- src/include/port/unixware.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/include/port/unixware.h') diff --git a/src/include/port/unixware.h b/src/include/port/unixware.h index 6cddddac2e..a8002a0dcb 100644 --- a/src/include/port/unixware.h +++ b/src/include/port/unixware.h @@ -1,4 +1,7 @@ -/* see src/backend/libpq/pqcomm.c */ +/* + * $PostgreSQL: pgsql/src/include/port/unixware.h,v 1.18 2008/05/17 01:28:24 adunstan Exp $ + * + * see src/backend/libpq/pqcomm.c */ #define SCO_ACCEPT_BUG /*************************************** -- cgit v1.2.1