(file_lock, file_unlock, ef_lock, ef_unlock, commlock, communlock):

File locking doesn't make sense, must be a leftover from the distant
past.  Remove.  Callers changed.
This commit is contained in:
Markus Armbruster 2004-01-29 17:07:26 +00:00
parent daad9ed79c
commit beba530119
11 changed files with 2 additions and 191 deletions

View file

@ -105,12 +105,7 @@ multsingle(natid us, natid them, struct natstr *natp)
price = minmult;
if (price >= maxmult)
price = maxmult;
if (!commlock()) {
pr("Unable to lock commodity file; get help!\n");
return;
}
if (commread() < 0) {
(void)communlock();
pr("Unable to re-read commodity file; get help!\n");
return;
}
@ -118,5 +113,4 @@ multsingle(natid us, natid them, struct natstr *natp)
if (commwrite() < 0) {
pr("Unable to write out commodity file; get help!\n");
}
(void)communlock();
}