]> code.citadel.org Git - citadel.git/blobdiff - citadel/aidepost.c
fix build for Solaris
[citadel.git] / citadel / aidepost.c
index 37d1a295e92e8b1d4844bd61967d11070a92f646..3591ff8962fbd33c107050afafbbf27fc96f2c28 100644 (file)
 #endif
 
 
-static void make_message(FILE *fp, char *target_room, char *author)
+/*
+ * Simplified function to generate a message in our format
+ */
+static void ap_make_message(FILE *fp, char *target_room, char *author)
 {
        int a;
        long bb, cc;
@@ -94,19 +97,21 @@ int main(int argc, char **argv)
                }
        }
 
-
        snprintf(tempspool, sizeof tempspool,
-               "./network/spoolin/ap.%04x",
-               getpid());
+               "./network/spoolin/ap.%04lx",
+               (long)getpid());
 
-       tempfp = tmpfile();
+       unlink(tempspool);
+
+       tempfp = fopen(tempspool, "w+b");
+       unlink(tempspool);
        if (tempfp == NULL) {
                perror("cannot open temp file");
                exit(errno);
        }
 
        /* Generate a message from stdin */
-       make_message(tempfp, target_room, author);
+       ap_make_message(tempfp, target_room, author);
 
        /* Copy it to a new temp file in the spool directory */
        rewind(tempfp);
@@ -116,8 +121,9 @@ int main(int argc, char **argv)
                perror("cannot open spool file");
                exit(errno);
        }
-       while (ch = getc(tempfp), (ch >= 0))
+       while (ch = getc(tempfp), (ch >= 0)) {
                putc(ch, spoolfp);
+       }
 
        fclose(tempfp);
        fclose(spoolfp);