]> andersk Git - moira.git/blobdiff - update/checksum.c
Add support for get_host_by_account_number query.
[moira.git] / update / checksum.c
index 6347c16e6a5d11d0d0b49f50950818b45158ceb3..4389054688dd9f297012fe2e0f93b88c229b4a42 100644 (file)
@@ -1,30 +1,28 @@
-/*
- *     $Source$
- *     $Header$
+/* $Id$
+ *
+ * Copyright (C) 1988-1998 by the Massachusetts Institute of Technology.
+ * For copying and distribution information, please see the file
+ * <mit-copyright.h>.
  */
-/*  (c) Copyright 1988 by the Massachusetts Institute of Technology. */
-/*  For copying and distribution information, please see the file */
-/*  <mit-copyright.h>. */
-
-#ifndef lint
-static char *rcsid_checksum_c = "$Header$";
-#endif
 
 #include <mit-copyright.h>
+#include <moira.h>
+#include "update_server.h"
+
 #include <stdio.h>
-#include <sys/types.h>
-#include <sys/file.h>
+
+RCSID("$Header$");
 
 /*
  * checksum_fd(fd)
  * returns 24-bit checksum of bytes in file
  */
 
-int checksum_file(char *path)
+long checksum_file(char *path)
 {
-  register int sum;
-  register int ch;
-  register FILE *f;
+  long sum;
+  int ch;
+  FILE *f;
 
   sum = 0;
   f = fopen(path, "r");
This page took 0.076115 seconds and 4 git commands to generate.