From: ishmal Date: Thu, 1 Jun 2006 00:03:09 +0000 (+0000) Subject: Misnamed var popen_mode_cur X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b6ef7a0c3a77a8cfe423b051eac10ddfa2e9510b;p=inkscape.git Misnamed var popen_mode_cur --- diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index ae3c243ce..11544463d 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -1190,10 +1190,10 @@ bool pipe_t::open(const Glib::ustring &command, Glib::ustring popen_mode; if ( (mode_p & mode_read) != 0 ) - popen_mode_cur.append("r"); + popen_mode.append("r"); if ( (mode_p & mode_write) != 0 ) - popen_mode_cur.append("w"); + popen_mode.append("w"); // Get the commandline to be run Glib::ustring pipeStr = command;