Index: trunk/athena/bin/lpr/quota/bill_db.c
===================================================================
--- trunk/athena/bin/lpr/quota/bill_db.c (revision 4276)
+++ trunk/athena/bin/lpr/quota/bill_db.c (revision 4370)
@@ -222,6 +222,5 @@
 				   temp.realm, &qrec, (unsigned int)1,
 				   &more) == 1) { 
-	  billing_amount = qrec.quotaAmount - qrec.quotaLimit
-	    - qrec.yearToDateCharge;
+	  billing_amount = qrec.quotaAmount - qrec.quotaLimit;
 	  if (billing_amount < 500) {  /* restore and continue */
 	    qrec.pendingCharge = billing_amount;
@@ -259,8 +258,8 @@
     }
     /* else the username was not found */
-    if (temp.quotaAmount - temp.quotaLimit - temp.yearToDateCharge > 500) {
+    if (temp.quotaAmount - temp.quotaLimit > 500) {
       fprintf(stderr, "%s was not found in list and ", temp.name);
       fprintf(stderr, "needs to be billed for %d.\n",
-	      temp.quotaAmount - temp.quotaLimit - temp.yearToDateCharge);
+	      temp.quotaAmount - temp.quotaLimit);
     }
     bzero(&temp, sizeof(temp));
