Author: bapt
Date: Thu Jun  5 22:10:25 2014
New Revision: 267131
URL: http://svnweb.freebsd.org/changeset/base/267131

Log:
  Use NULL instead of 0
  
  Patch by Sascha Wildner <s...@online.de> for Dragonfly
  
  Reviewed by:  des
  Obtained from:        Dragonfly
  MFC after:    1 week

Modified:
  head/lib/libfetch/http.c

Modified: head/lib/libfetch/http.c
==============================================================================
--- head/lib/libfetch/http.c    Thu Jun  5 21:37:04 2014        (r267130)
+++ head/lib/libfetch/http.c    Thu Jun  5 22:10:25 2014        (r267131)
@@ -1030,7 +1030,7 @@ typedef struct {
 static void
 init_http_auth_params(http_auth_params_t *s)
 {
-       s->scheme = s->realm = s->user = s->password = 0;
+       s->scheme = s->realm = s->user = s->password = NULL;
 }
 
 static void
@@ -1249,7 +1249,7 @@ http_digest_auth(conn_t *conn, const cha
        int r;
        char noncecount[10];
        char cnonce[40];
-       char *options = 0;
+       char *options = NULL;
 
        if (!c->realm || !c->nonce) {
                DEBUG(fprintf(stderr, "realm/nonce not set in challenge\n"));
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to