*** empty log message ***

This commit is contained in:
Marty Kraimer
1993-07-30 16:09:52 +00:00
parent 1966657c3d
commit da04ac2262
2 changed files with 7 additions and 3 deletions

View File

@@ -62,7 +62,11 @@ char **argv;
}
fpdctsdr = fopen(argv[1],"r");
if(!fpdctsdr) {
errMessage(0,"Error opening file");
errMessage(0,"Error opening input file");
exit(-1);
}
if(fopen(argv[2],"r") {
errMessage(-1,"Output File already exists");
exit(-1);
}
pdbbase=dbAllocBase();
@@ -76,7 +80,7 @@ char **argv;
yyparse();
fp=fopen(argv[2],"w");
if(fp==NULL) {
errMessage(0,"Error opening file");
errMessage(0,"Error opening output file");
exit(-1);
}
status = dbWrite(pdbbase,fpdctsdr,fp);

View File

@@ -1,6 +1,6 @@
b [a-zA-Z0-9_]
a [ \t]
d [a-zA-Z0-9_\,\./\*#\[\]%:;!|\'\-&\(\)@\?\+<>]
d [a-zA-Z0-9_\,\./\*#\[\]%:;!|\'\-&\(\)@\?\+<>=$]
%{