1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
1999-04-14 18:51:37 +00:00
parent 9a4344e73e
commit 29e2916827
8 changed files with 101 additions and 40 deletions

View File

@ -23,7 +23,7 @@ extern char *optarg;
#include "extern.h"
struct _include_path *include_paths;
int no_auto_trans = 0;
int autocommit = 0;
struct cursor *cur = NULL;
struct typedefs *types = NULL;
@ -76,7 +76,7 @@ main(int argc, char *const argv[])
add_include_path(optarg);
break;
case 't':
no_auto_trans = 1;
autocommit = 1;
break;
case 'v':
fprintf(stderr, "ecpg - the postgresql preprocessor, version: %d.%d.%d\n", MAJOR_VERSION, MINOR_VERSION, PATCHLEVEL);