diff --git a/contrib/pginterface/README b/contrib/pginterface/README
index 7a82b36305c4ae812e667a2af7402c9797eba2b3..c52b5d1190a19db53cb3c25201d6cc0accc5f0ab 100644
--- a/contrib/pginterface/README
+++ b/contrib/pginterface/README
@@ -1,6 +1,6 @@
 
 
-   			      Pginterface 1.0
+   			      Pginterface 2.0
 
 Attached is a copy of the Postgres support routines I wrote to allow me
 to more cleanly interface to the libpg library, more like a 4gl SQL
@@ -10,7 +10,7 @@ It has several features that may be useful for others:
 
 I have simplified the C code that calls libpq by wrapping all the
 functionality of libpq in calls to connectdb(), doquery(), fetch(),
-fetchisnull() and disconnectdb().  Each call returns a structure or
+fetchwithnulls() and disconnectdb().  Each call returns a structure or
 value, so if you need to do more work with the result, you can.  Also, I
 have a global variable that allows you to disable the error checking I
 have added to the doquery() routine.
diff --git a/contrib/pginterface/pgnulltest.c b/contrib/pginterface/pgnulltest.c
index b99292113d8c999af732cf8b5f561ef69b4b1c36..283106f726dbd0d9d98847ae07cdbe1ac4931fad 100644
--- a/contrib/pginterface/pgnulltest.c
+++ b/contrib/pginterface/pgnulltest.c
@@ -1,5 +1,5 @@
 /*
- * insert.c
+ * pgnulltest.c
  *
 */
 
diff --git a/contrib/pginterface/pgwordcount.c b/contrib/pginterface/pgwordcount.c
index 4e36cc0423dc9bc9e1c80d6eb5c43f2299149507..437f64a064a8a2cfa77aa5ad5d62d78d95166446 100644
--- a/contrib/pginterface/pgwordcount.c
+++ b/contrib/pginterface/pgwordcount.c
@@ -6,8 +6,8 @@
 #include <stdio.h>
 #include <signal.h>
 #include <time.h>
-#include <libpq-fe.h>
 #include "halt.h"
+#include <libpq-fe.h>
 #include "pginterface.h"
 
 int main(int argc, char **argv)
@@ -70,4 +70,3 @@ int main(int argc, char **argv)
 	return 0;
 }
 
-