dmb(3) error reporting

utzoo!henry utzoo!henry
Mon Dec 20 13:53:10 AEST 1982


Contrary to the manual page, the store() routine of dbm(3) actually
does not return an error code at all.  This can be fixed by the
following mods to /usr/src/libdbm/dbm.c:

	113c113
	< 	return;
	---
	> 	return(0);
	118c118
	< 		return;
	---
	> 		return(-1);



More information about the Net.bugs.v7 mailing list