]> andersk Git - moira.git/blobdiff - gen/hosts.dc
Initialize the SMS error table so that if there are errors, they can be
[moira.git] / gen / hosts.dc
index 9c4f4c59fedb1fd0d382184d3332734868125768..8119f6e3e99e3e9dae1a511b7bf8019cd0e7d616 100644 (file)
@@ -69,7 +69,13 @@ char **argv;
     EXEC SQL WHENEVER SQLERROR GOTO sqlerr;
 
     gettimeofday(&now, NULL);
-    fprintf(out, "; Host table generated %s;\n", ctime(&now.tv_sec));
+    
+    fprintf(out, "; MIT Network Host Table\n;\n");
+    fprintf(out, "; \t%cAuthor: $\n", '$');
+    fprintf(out, "; \t%cDate: $\n", '$');
+    fprintf(out, "; \t%cRevision: $\n;\n", '$');
+    fprintf(out, "; Host table generated by Moira at %s;\n",
+           ctime(&now.tv_sec));
 
     EXEC SQL DECLARE y CURSOR FOR SELECT
       mach_id, name FROM hostalias;
@@ -104,7 +110,6 @@ char **argv;
        if (id == 0) continue;
        if (*strtrim(name) == 0) continue;
        if ((i = strlen(name)) < 9 || strcmp(&name[i-8], ".MIT.EDU")) {
-           fprintf(stderr, "Name %s not in MIT domain\n", name);
            continue;
        } else {
            name[i-8] = 0;
This page took 0.069245 seconds and 4 git commands to generate.