Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove debug msgs #9

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions porting/polyfill.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,6 @@ int convertOpenStream(int fd, unsigned short fileCCSID){
conversionArg.pccsid = 0;
conversionArg.fccsid = fileCCSID; /* 1047; */
int res = fcntl(fd, F_CONTROL_CVT, &conversionArg);
if (res != 0){
printf("* internal error* convertOpenStream(), and ascii/ebcdic function, called fcntl failed errno=%d\n",errno);
}
return res;
}

Expand Down Expand Up @@ -152,9 +149,7 @@ int tagFile(const char *pathname, unsigned short ccsid){

int res = __chattr((char*)pathname, &attr, sizeof(attr));
#endif
if (res){
printf("chattr failed with errno=%d\n",errno);
}

return res;
}

Expand Down