r10078: fix typo from manual patch application
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 1 Oct 2004 17:24:52 +0000 (17:24 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 1 Oct 2004 17:24:52 +0000 (17:24 +0000)
db-odbc/odbc-ff-interface.lisp
sql/utils.lisp

index a7153c8660600a5d7260a967d060a6aee1cbc8ea..e46db57a021b54e65df0878214fef2e6cd7a256a 100644 (file)
      (table-name :pointer-void)
      (table-name-length :short)
      (table-type-name :pointer-void)
-     (table-type-name-length :short)
-     (unique :short)
-     (reserved :short))
+     (table-type-name-length :short))
   :module "odbc"
   :returning :short)
 
index 362d16c178529ae67659996c181bbe5f2e4aac73..0e40b1de6a6312cf7cca7183c5164aee402f0716 100644 (file)
          (escaped (make-string (length unescaped))))
     (substitute #\_ #\- unescaped)))
 
-(dotimes (i (length unescaped))
-      (setf (char escaped i)
-            (cond ((equal (char unescaped i) #\-)
-                   #\_)
-                  ;; ...
-                  (t
-                   (char unescaped i)))))
-    escaped))
-
 (defmacro without-interrupts (&body body)
   #+allegro `(mp:without-scheduling ,@body)
   #+clisp `(progn ,@body)