Index: ossp-pkg/petidomo/petidomo.h RCS File: /v/ossp/cvs/ossp-pkg/petidomo/petidomo.h,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/petidomo/petidomo.h,v' 2>/dev/null --- petidomo.h 2001/01/15 16:55:45 1.10 +++ petidomo.h 2001/01/15 16:58:58 1.11 @@ -236,10 +236,10 @@ /********** queue_posting.c **********/ -void queue_posting(const struct Mail* mail, const char* listname); +char* queue_posting(const struct Mail* mail, const char* listname); /********** queue_command.c **********/ -void queue_command(const struct Mail* mail, const char* command); +char* queue_command(const struct Mail* mail, const char* command); #endif /* !defined(__PETIDOMO_H__) */ Index: ossp-pkg/petidomo/queue_command.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/Attic/queue_command.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/petidomo/Attic/queue_command.c,v' 2>/dev/null --- queue_command.c 2001/01/15 16:29:11 1.1 +++ queue_command.c 2001/01/15 16:58:58 1.2 @@ -22,7 +22,7 @@ #include "libtext/text.h" #include "petidomo.h" -void queue_command(const struct Mail* mail, const char* command) +char* queue_command(const struct Mail* mail, const char* command) { const struct PD_Config * MasterConfig = getMasterConfig(); char* buffer; @@ -54,4 +54,5 @@ fclose(fh); chmod(buffer, 0755); free(buffer); + return cookie; } Index: ossp-pkg/petidomo/queue_posting.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/Attic/queue_posting.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/petidomo/Attic/queue_posting.c,v' 2>/dev/null --- queue_posting.c 2001/01/15 16:29:11 1.1 +++ queue_posting.c 2001/01/15 16:58:58 1.2 @@ -22,7 +22,7 @@ #include "libtext/text.h" #include "petidomo.h" -void queue_posting(const struct Mail* mail, const char* listname) +char* queue_posting(const struct Mail* mail, const char* listname) { const struct PD_Config * MasterConfig = getMasterConfig(); char* buffer; @@ -46,4 +46,5 @@ fclose(fh); chmod(buffer, 0755); free(buffer); + return cookie; }