From: Ulrich Drepper Date: Sun, 5 Apr 1998 12:06:27 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/libc-ud-980427~77 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80aea676e37ea925877aeee2ebd38b2db3f03736;p=platform%2Fupstream%2Fglibc.git Update. 1998-04-05 Andreas Jaeger * manual/examples/mkfsock.c (make_named_socket): Use AF_LOCAL instead of AF_FILE. --- diff --git a/ChangeLog b/ChangeLog index 7bca7bb..1596d65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-04-05 Andreas Jaeger + + * manual/examples/mkfsock.c (make_named_socket): Use AF_LOCAL + instead of AF_FILE. + 1998-04-05 Ulrich Drepper * iconv/gconv_simple.c: Rewrite to not make use of the mb*towc* diff --git a/manual/examples/mkfsock.c b/manual/examples/mkfsock.c index 46729d1..8683fbd 100644 --- a/manual/examples/mkfsock.c +++ b/manual/examples/mkfsock.c @@ -5,7 +5,7 @@ #include #include -int +int make_named_socket (const char *filename) { struct sockaddr_un name; @@ -21,7 +21,7 @@ make_named_socket (const char *filename) } /* Bind a name to the socket. */ - name.sun_family = AF_FILE; + name.sun_family = AF_LOCAL; strncpy (name.sun_path, filename, sizeof (name.sun_path)); /* The size of the address is