]> git.sur5r.net Git - cc65/commitdiff
amode_to_bmode fixes: support "a", be more restrictive about the position
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 16 May 2002 15:25:48 +0000 (15:25 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 16 May 2002 15:25:48 +0000 (15:25 +0000)
of the char (r, w, and a must appear as the first char only)

git-svn-id: svn://svn.cc65.org/cc65/trunk@1271 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/_fopen.c

index 3ae53a59bd343bbd0dca5207f14a7824cc135678..88d01e7e36fc4a1c4b09fa41ce6c49a8108ca71e 100644 (file)
@@ -19,23 +19,33 @@ static unsigned char amode_to_bmode (const char* mode)
     char         flag = 0;
     unsigned char binmode = 0;
 
+    c = *mode++;
+    switch(c) {
+        case 'w':
+            binmode = O_WRONLY;
+            break;
+        case 'r':
+            binmode = O_RDONLY;
+            break;
+        case 'a':
+            binmode = O_WRONLY | O_APPEND;
+            break;
+       default:
+            return 0;  /* invalid char */
+    }
+
     while (c = *mode++) {
         switch(c) {
-            case 'w':
-                binmode = O_WRONLY;
-                break;
-            case 'r':
-                binmode = O_RDONLY;
-                break;
             case '+':
-                binmode = O_RDWR;
+                binmode = (binmode & ~15) | O_RDWR;
                 break;
-            /* a,b missing */
+            case 'b':
+                /* currently ignored */
+                break;
+            default:
+                return 0;  /* invalid char */
         }
     }
-    if (binmode == 0) {
-       _errno = EINVAL;
-    }
     return binmode;
 }
 
@@ -50,7 +60,8 @@ FILE* _fopen (const char* name, const char* mode, FILE* f)
 
     /* Convert ASCII mode to binary mode */
     if ((binmode = amode_to_bmode (mode)) == 0) {
-       /* Invalid mode, _errno already set */
+       /* Invalid mode */
+       _errno = EINVAL;
         return 0;
     }