]> arthur.barton.de Git - netatalk.git/blobdiff - etc/papd/comment.c
Remove bdb env on exit
[netatalk.git] / etc / papd / comment.c
index 042ec0ef4d111ea621f26b6a0c0413d8b25d63bd..1a2964d6f6a7f86b03336d742d2476d5d30b896e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: comment.c,v 1.5 2001-06-25 20:13:45 rufustfirefly Exp $
+ * $Id: comment.c,v 1.10 2009-10-13 22:55:37 didg Exp $
  *
  * Copyright (c) 1990,1994 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
@@ -9,11 +9,12 @@
 #include "config.h"
 #endif /* HAVE_CONFIG_H */
 
-#include <sys/syslog.h>
+#include <atalk/logger.h>
 #include <sys/param.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <errno.h>
 
 #include "comment.h"
 
@@ -30,14 +31,13 @@ void compop( void )
     free( cs );
 }
 
-void compush( comment )
-    struct papd_comment        *comment;
+void compush(struct papd_comment *comment)
 {
     struct comstate    *cs;
 
     if (( cs = (struct comstate *)malloc( sizeof( struct comstate ))) ==
            NULL ) {
-       syslog( LOG_ERR, "malloc: %m" );
+       LOG(log_error, logtype_papd, "malloc: %s", strerror(errno) );
        exit( 1 );
     }
 
@@ -47,9 +47,7 @@ void compush( comment )
     comstate = cs;
 }
 
-int comswitch( comments, handler )
-    struct papd_comment        *comments;
-    int                        (*handler)();
+int comswitch(struct papd_comment *comments, int (*handler)())
 {
     struct papd_comment        *c, *comment = NULL;
 
@@ -59,7 +57,7 @@ int comswitch( comments, handler )
        }
     }
     if ( comment == NULL || comment->c_handler != handler ) {
-       syslog( LOG_ERR, "comswitch: can't find handler!" );
+       LOG(log_error, logtype_papd, "comswitch: can't find handler!" );
        return( -1 );
     }
     compop();
@@ -67,9 +65,7 @@ int comswitch( comments, handler )
     return( 0 );
 }
 
-int comcmp( start, stop, str, how )
-    char       *start, *stop, *str;
-    int                how;
+int comcmp( char *start, char *stop, char *str,int how)
 {
     int                cc, len;
 
@@ -88,9 +84,7 @@ int comcmp( start, stop, str, how )
     return( 1 );
 }
 
-struct papd_comment *commatch( start, stop, comments )
-    char               *start, *stop;
-    struct papd_comment        comments[];
+struct papd_comment *commatch( char *start, char *stop, struct papd_comment comments[])
 {
     struct papd_comment        *comment;
 
@@ -106,8 +100,7 @@ struct papd_comment *commatch( start, stop, comments )
     }
 }
 
-char *comtoken( start, stop, pos, delim )
-    char       *start, *stop, *pos, *delim;
+char *comtoken( char *start, char *stop, char *pos, char *delim)
 {
     if ( pos < start || pos > stop ) {
        abort();