diff options
author | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
---|---|---|
committer | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
commit | 18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc (patch) | |
tree | e1c40d792aee8685690c05c66852a581466505bf /mysys/mf_tempfile.c | |
parent | 6fbafad20d727c4df3bb74e63399e4eb2e646376 (diff) | |
download | mariadb-git-18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc.tar.gz |
Some
C++ comments cleanup
sql/stacktrace.c:
C++ comments cleanup
sql/structs.h:
C++ comments cleanup
sql/ha_myisam.h:
C++ comments cleanup
include/config-os2.h:
C++ comments cleanup
include/sslopt-case.h:
C++ comments cleanup
mysys/mf_tempfile.c:
C++ comments cleanup
sql/mysql_priv.h:
C++ comments cleanup
sql/slave.h:
C++ comments cleanup
sql/time.cc:
C++ comments cleanup
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysys/mf_tempfile.c')
-rw-r--r-- | mysys/mf_tempfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_tempfile.c b/mysys/mf_tempfile.c index 86e43e5b6fc..09fde27afd6 100644 --- a/mysys/mf_tempfile.c +++ b/mysys/mf_tempfile.c @@ -122,10 +122,10 @@ File create_temp_file(char *to, const char *dir, const char *prefix, dir=to; } #ifdef OS2 - // changing environ variable doesn't work with VACPP + /* changing environ variable doesn't work with VACPP */ char buffer[256]; sprintf( buffer, "TMP=%s", dir); - // remove ending backslash + /* remove ending backslash */ if (buffer[strlen(buffer)-1] == '\\') buffer[strlen(buffer)-1] = '\0'; putenv( buffer); |