diff libinterp/corefcn/file-io.cc @ 20235:d9f35ceff9e1

Change mkfifo to use an octal argument for MODE (bug #45054). * NEWS: Announce switch from decimal to octal MODE for mkfifo. * file-io.cc (convert): Add a FIXME note that this function is repeated in * syscalls.cc. * syscalls.cc (convert): New function to convert from one base to another. * syscalls.cc (Fmkfifo): Change docstring to note that MODE argument is now octal. Convert MODE from octal to decimal before calling octave_mkfifo(). Add BIST tests. * __gnuplot_get_var__.m, __gnuplot_ginput__.m: Change instances of MODE argument in m-files from decimal to octal.
author Rik <rik@octave.org>
date Sun, 17 May 2015 10:04:08 -0700
parents b597bd161a5f
children 7ac907da9fba
line wrap: on
line diff
--- a/libinterp/corefcn/file-io.cc	Sun May 17 09:48:12 2015 -0700
+++ b/libinterp/corefcn/file-io.cc	Sun May 17 10:04:08 2015 -0700
@@ -2204,6 +2204,8 @@
   return retval;
 }
 
+// FIXME: This routine also exists verbatim in syscalls.cc.
+//        Maybe change to be a general utility routine.
 static int
 convert (int x, int ibase, int obase)
 {