[GRASS-SVN] r32624 - grass/branches/develbranch_6/lib/db/dbmi_client
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Aug 7 15:02:45 EDT 2008
Author: neteler
Date: 2008-08-07 15:02:45 -0400 (Thu, 07 Aug 2008)
New Revision: 32624
Modified:
grass/branches/develbranch_6/lib/db/dbmi_client/c_add_col.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_bindupdate.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_close_cur.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_closedb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_create_idx.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_create_tab.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_createdb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_delete.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_deletedb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_desc_table.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_col.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_index.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_tab.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_execute.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_fetch.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_finddb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_insert.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_list_drivers.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_list_idx.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_list_tabs.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_listdb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_opendb.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_openinsert.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_openselect.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_openupdate.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_priv.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_rows.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_update.c
grass/branches/develbranch_6/lib/db/dbmi_client/c_version.c
grass/branches/develbranch_6/lib/db/dbmi_client/column.c
grass/branches/develbranch_6/lib/db/dbmi_client/copy_tab.c
grass/branches/develbranch_6/lib/db/dbmi_client/db.c
grass/branches/develbranch_6/lib/db/dbmi_client/delete_tab.c
grass/branches/develbranch_6/lib/db/dbmi_client/printtab.c
grass/branches/develbranch_6/lib/db/dbmi_client/select.c
grass/branches/develbranch_6/lib/db/dbmi_client/shutdown.c
grass/branches/develbranch_6/lib/db/dbmi_client/start.c
grass/branches/develbranch_6/lib/db/dbmi_client/table.c
Log:
added original author (merge from trunk)
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_add_col.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_add_col.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_add_col.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_bindupdate.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_bindupdate.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_bindupdate.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_close_cur.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_close_cur.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_close_cur.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_closedb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_closedb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_closedb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_create_idx.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_create_idx.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_create_idx.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <string.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_create_tab.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_create_tab.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_create_tab.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_createdb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_createdb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_createdb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_delete.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_delete.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_delete.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_deletedb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_deletedb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_deletedb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_desc_table.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_desc_table.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_desc_table.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_col.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_col.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_col.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_index.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_index.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_index.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_tab.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_tab.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_drop_tab.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_execute.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_execute.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_execute.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_fetch.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_fetch.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_fetch.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_finddb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_finddb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_finddb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_insert.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_insert.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_insert.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_list_drivers.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_list_drivers.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_list_drivers.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_list_idx.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_list_idx.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_list_idx.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_list_tabs.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_list_tabs.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_list_tabs.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_listdb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_listdb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_listdb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_opendb.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_opendb.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_opendb.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_openinsert.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_openinsert.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_openinsert.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_openselect.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_openselect.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_openselect.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_openupdate.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_openupdate.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_openupdate.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_priv.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_priv.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_priv.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_rows.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_rows.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_rows.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_update.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_update.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_update.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/c_version.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/c_version.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/c_version.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/column.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/column.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/column.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
* \author Update by Glynn Clement <glynn gclements.plus.com>
* and Martin Landa <landa.martin gmail.com>
*/
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/copy_tab.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/copy_tab.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/copy_tab.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/db.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/db.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/db.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/delete_tab.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/delete_tab.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/delete_tab.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <grass/dbmi.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/printtab.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/printtab.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/printtab.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <string.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/select.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/select.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/select.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/shutdown.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/shutdown.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/shutdown.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/start.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/start.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/start.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <string.h>
Modified: grass/branches/develbranch_6/lib/db/dbmi_client/table.c
===================================================================
--- grass/branches/develbranch_6/lib/db/dbmi_client/table.c 2008-08-07 18:53:46 UTC (rev 32623)
+++ grass/branches/develbranch_6/lib/db/dbmi_client/table.c 2008-08-07 19:02:45 UTC (rev 32624)
@@ -9,7 +9,7 @@
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
- * \author Radim Blazek
+ * \author Joel Jones (CERL/UIUC), Radim Blazek
*/
#include <stdlib.h>
More information about the grass-commit
mailing list