You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/08/19 12:18:14 UTC

svn commit: r233462 - /httpd/httpd/trunk/support/httxt2dbm.c

Author: jorton
Date: Fri Aug 19 03:18:10 2005
New Revision: 233462

URL: http://svn.apache.org/viewcvs?rev=233462&view=rev
Log:
* support/httxt2dbm.c: Fix some style nits, no functional change.

Modified:
    httpd/httpd/trunk/support/httxt2dbm.c

Modified: httpd/httpd/trunk/support/httxt2dbm.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/support/httxt2dbm.c?rev=233462&r1=233461&r2=233462&view=diff
==============================================================================
--- httpd/httpd/trunk/support/httxt2dbm.c (original)
+++ httpd/httpd/trunk/support/httxt2dbm.c Fri Aug 19 03:18:10 2005
@@ -54,10 +54,10 @@
 
 static void usage(void)
 {
-    const char* have_sdbm;
-    const char* have_gdbm;
-    const char* have_ndbm;
-    const char* have_db;
+    const char *have_sdbm;
+    const char *have_gdbm;
+    const char *have_ndbm;
+    const char *have_db;
 
 #if APU_HAVE_SDBM
     have_sdbm = AVAIL;
@@ -138,7 +138,7 @@
         dbmkey.dptr = apr_pstrmemdup(p, line,  c - line);
         dbmkey.dsize = (c - line);
 
-        while(*c && apr_isspace(*c)) {
+        while (*c && apr_isspace(*c)) {
             ++c;
         }
 
@@ -149,7 +149,7 @@
 
         value = c;
 
-        while(*c && !apr_isspace(*c)) {
+        while (*c && !apr_isspace(*c)) {
             ++c;
         }
 
@@ -173,7 +173,7 @@
     return rv;
 }
 
-int main(int argc, const char* const argv[]) 
+int main(int argc, const char *const argv[]) 
 {
     apr_pool_t *pool;
     apr_status_t rv = APR_SUCCESS;