Revision
70987
Author
raimue@macports.org
Date
2010-08-28 19:35:54 -0700 (Sat, 28 Aug 2010)

Log Message

pextlib: Fix r70985 by adding missing parameter

Modified Paths

Diff

Modified: trunk/base/src/pextlib1.0/curl.c (70986 => 70987)


--- trunk/base/src/pextlib1.0/curl.c	2010-08-29 02:06:30 UTC (rev 70986)
+++ trunk/base/src/pextlib1.0/curl.c	2010-08-29 02:35:54 UTC (rev 70987)
@@ -191,7 +191,7 @@
 				}
 			} else {
 				Tcl_ResetResult(interp);
-				Tcl_AppendResult("curl fetch: unknown option ", theOption, NULL);
+				Tcl_AppendResult(interp, "curl fetch: unknown option ", theOption, NULL);
 				theResult = TCL_ERROR;
 				break;
 			}
@@ -469,7 +469,7 @@
 				ignoresslcert = 1;
 			} else {
 				Tcl_ResetResult(interp);
-				Tcl_AppendResult("curl isnewer: unknown option ", theOption, NULL);
+				Tcl_AppendResult(interp, "curl isnewer: unknown option ", theOption, NULL);
 				theResult = TCL_ERROR;
 				break;
 			}
@@ -703,7 +703,7 @@
 				ignoresslcert = 1;
 			} else {
 				Tcl_ResetResult(interp);
-				Tcl_AppendResult("curl getsize: unknown option ", theOption, NULL);
+				Tcl_AppendResult(interp, "curl getsize: unknown option ", theOption, NULL);
 				theResult = TCL_ERROR;
 				break;
 			}