Skip to content

Commit

Permalink
db_unixodbc: rename con.[ch] files to db_con.[ch]
Browse files Browse the repository at this point in the history
`con` is not a valid name under Windows. See ticket #1212
  • Loading branch information
razvancrainea committed Mar 9, 2020
1 parent 1849eb1 commit 6d33694
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/db_unixodbc/con.c → modules/db_unixodbc/db_con.c
Expand Up @@ -29,7 +29,7 @@
* 2006-05-05 extract_error passes back last error state on return (sgupta)
*/

#include "con.h"
#include "db_con.h"
#include "../../mem/mem.h"
#include "../../dprint.h"
#include "../../ut.h"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/db_unixodbc/dbase.c
Expand Up @@ -36,7 +36,7 @@
#include "../../dprint.h"
#include "../../db/db_query.h"
#include "val.h"
#include "con.h"
#include "db_con.h"
#include "res.h"
#include "db_unixodbc.h"
#include "dbase.h"
Expand Down
2 changes: 1 addition & 1 deletion modules/db_unixodbc/res.c
Expand Up @@ -32,7 +32,7 @@
#include "../../dprint.h"
#include "row.h"
#include "../../db/db_res.h"
#include "con.h"
#include "db_con.h"
#include "res.h"
#include <stdlib.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion modules/db_unixodbc/row.c
Expand Up @@ -33,7 +33,7 @@
#include "../../db/db_ut.h"
#include "val.h"
#include "row.h"
#include "con.h"
#include "db_con.h"

/* gradually growing buffer; holds MAX(rows x columns) pointers */
static str *rows;
Expand Down
2 changes: 1 addition & 1 deletion modules/db_unixodbc/row.h
Expand Up @@ -33,7 +33,7 @@
#include "../../db/db_res.h"
#include "../../db/db_row.h"

#include "con.h"
#include "db_con.h"

/*
* Duplicate result columns in pkg memory, stack them linearly
Expand Down
2 changes: 1 addition & 1 deletion modules/db_unixodbc/val.c
Expand Up @@ -32,7 +32,7 @@
#include "../../db/db_ut.h"
#include "db_unixodbc.h"
#include "val.h"
#include "con.h"
#include "db_con.h"


#include <string.h>
Expand Down

0 comments on commit 6d33694

Please sign in to comment.