]> andersk Git - moira.git/blobdiff - update/xfer_002.c
Since pr_ChangeEntry() already checks to see if the id's aren't changing,
[moira.git] / update / xfer_002.c
index 5c325e485fe22a850dc9f17846453ac2f8411850..3b00c9243815a213485fa7e325542ed706c072ce 100644 (file)
@@ -17,7 +17,7 @@ static char *rcsid_xfer_002_c = "$Header$";
 #include <sys/param.h>
 #include <sys/file.h>
 #include <strings.h>
-#include <sms.h>
+#include <moira.h>
 
 extern CONNECTION conn;
 char buf[BUFSIZ];
@@ -41,7 +41,7 @@ extern int have_authorization, have_file, done;
  *
  * function:
  *     perform initial preparations and receive file as
- * a single string, storing it into <pathname>.sms_update.
+ * a single string, storing it into <pathname>.moira_update.
  *
  * still to be done: file locking; perform transfers in pieces instead
  * of all at once; use checksums
@@ -60,7 +60,7 @@ xfer_002(str)
        str++;
     if (!*str) {
     failure:
-       reject_call(SMS_ARGS);
+       reject_call(MR_ARGS);
        return;
     }
     file_size = atoi(str);
@@ -77,7 +77,7 @@ xfer_002(str)
        goto failure;
     pathname = str;
     if (!have_authorization) {
-       reject_call(SMS_PERM);
+       reject_call(MR_PERM);
        return;
     }
     if (done)                  /* re-initialize data */
@@ -91,7 +91,7 @@ xfer_002(str)
        have_file = 1;
        strcpy(buf, "transferred file ");
        strcat(buf, pathname);
-       sms_log_info(buf);
+       mr_log_info(buf);
     }
     return;
 }
This page took 0.043122 seconds and 4 git commands to generate.