summaryrefslogtreecommitdiff
path: root/src/interfaces/odbc/misc.c
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1998-10-28 17:09:22 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1998-10-28 17:09:22 +0000
commit571d1216641b77dcb1e301eb887162c8b590581a (patch)
tree66931f5f04a9021dc69583f3059a74193029d490 /src/interfaces/odbc/misc.c
parentf4ccb5e170f61dc4051cd8a0183cdea75d2e9368 (diff)
Fix macro declarations to allow disabling mylog() and qlog() on Unix boxes.
Fix spelling of "DIRSEPARATOR".
Diffstat (limited to 'src/interfaces/odbc/misc.c')
-rw-r--r--src/interfaces/odbc/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/odbc/misc.c b/src/interfaces/odbc/misc.c
index 7e1501842c6..94a116299b1 100644
--- a/src/interfaces/odbc/misc.c
+++ b/src/interfaces/odbc/misc.c
@@ -44,7 +44,7 @@ generate_filename(char* dirname,char* prefix,char* filename)
return;
strcpy(filename,dirname);
- strcat(filename,DIRSEPERATOR);
+ strcat(filename,DIRSEPARATOR);
if(prefix != 0)
strcat(filename,prefix);
#ifndef WIN32