Commit 36b5dff0 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

formdata: use appropriate fopen() macros

parent 5ea3d2ff
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -770,7 +770,7 @@ curl_off_t VmsRealFileSize(const char * name,
  int ret_stat;
  FILE * file;

  file = fopen(name, "r"); /* VMS */
  file = fopen(name, FOPEN_READTEXT); /* VMS */
  if(file == NULL)
    return 0;

@@ -1421,10 +1421,10 @@ static FILE * vmsfopenread(const char *file, const char *mode) {
  case FAB$C_VAR:
  case FAB$C_VFC:
  case FAB$C_STMCR:
    return fopen(file, "r"); /* VMS */
    return fopen(file, FOPEN_READTEXT); /* VMS */
    break;
  default:
    return fopen(file, "r", "rfm=stmlf", "ctx=stm");
    return fopen(file, FOPEN_READTEXT, "rfm=stmlf", "ctx=stm");
  }
}
#endif