From a8d222a0f8e79556c8fb30e7a9ffa8d9e6629ff0 Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Thu, 24 Jun 2021 00:29:54 +0300 Subject: [PATCH] chore: automated commit --- all.sas | 2 +- base/mp_base64copy.sas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/all.sas b/all.sas index 4568684..aff99c2 100644 --- a/all.sas +++ b/all.sas @@ -2226,7 +2226,7 @@ Usage: %let infound=0; %let outfound=0; data _null_; - set sashelp.vextfl(where=(upcase(fileref)="&inref" or fileref="&outref")); + set sashelp.vextfl(where=(fileref="&inref" or fileref="&outref")); if fileref="&inref" then call symputx('infound',1,'l'); if fileref="&outref" then call symputx('outfound',1,'l'); run; diff --git a/base/mp_base64copy.sas b/base/mp_base64copy.sas index 2cb7c0c..ec81f58 100644 --- a/base/mp_base64copy.sas +++ b/base/mp_base64copy.sas @@ -53,7 +53,7 @@ %let infound=0; %let outfound=0; data _null_; - set sashelp.vextfl(where=(upcase(fileref)="&inref" or fileref="&outref")); + set sashelp.vextfl(where=(fileref="&inref" or fileref="&outref")); if fileref="&inref" then call symputx('infound',1,'l'); if fileref="&outref" then call symputx('outfound',1,'l'); run;