diff options
author | Michael Adam <obnox@samba.org> | 2010-12-16 00:24:00 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-12-17 15:59:43 +0100 |
commit | b3d4b2052534395c97cd959db5db87f78d108d4e (patch) | |
tree | ab9ca8bde3471377ff1685f13a873aaad6ecc59f /lib | |
parent | 10eaad29777589e8bd797e3f0bad3a3a9fbf8577 (diff) | |
download | samba-b3d4b2052534395c97cd959db5db87f78d108d4e.tar.gz samba-b3d4b2052534395c97cd959db5db87f78d108d4e.tar.bz2 samba-b3d4b2052534395c97cd959db5db87f78d108d4e.zip |
util_net: fix a comment typo in interpret_string_addr_internal()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/util_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util_net.c b/lib/util/util_net.c index 00a5ee4ced..8a9b5b1f24 100644 --- a/lib/util/util_net.c +++ b/lib/util/util_net.c @@ -57,7 +57,7 @@ bool interpret_string_addr_internal(struct addrinfo **ppres, hints.ai_flags = flags; /* Linux man page on getaddrinfo() says port will be - uninitialized when service string in NULL */ + uninitialized when service string is NULL */ ret = getaddrinfo(str, NULL, &hints, |