]> arthur.barton.de Git - netatalk.git/blobdiff - etc/papd/comment.c
Remove bdb env on exit
[netatalk.git] / etc / papd / comment.c
index d4122107c081bed4ed5671b2e09a9ca9493bcdda..1a2964d6f6a7f86b03336d742d2476d5d30b896e 100644 (file)
@@ -1,17 +1,20 @@
 /*
+ * $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.
  */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
+#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"
 
@@ -28,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 );
     }
 
@@ -45,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;
 
@@ -57,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();
@@ -65,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;
 
@@ -86,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;
 
@@ -104,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();