diff options
author | David S. Miller <davem@davemloft.net> | 2012-03-13 00:33:58 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-03-13 00:41:37 -0700 |
commit | 09a3453f637006538b45f9da69d1895d26a15473 (patch) | |
tree | 0c5af86debfb0645b1913ca715b587b799f677d6 /nss | |
parent | 98bb2f1cd2b6eb794ecaf5ce4fcc3c79ee4df3e5 (diff) | |
download | glibc-09a3453f637006538b45f9da69d1895d26a15473.zip glibc-09a3453f637006538b45f9da69d1895d26a15473.tar.gz glibc-09a3453f637006538b45f9da69d1895d26a15473.tar.bz2 |
Add missing string.h include for strcpy calls.
* nss/nss_db/db-init.c: Include string.h
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nss_db/db-init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nss/nss_db/db-init.c b/nss/nss_db/db-init.c index 906331a..d23e8f8 100644 --- a/nss/nss_db/db-init.c +++ b/nss/nss_db/db-init.c @@ -1,5 +1,5 @@ /* Initialization in nss_db module. - Copyright (C) 2011 Free Software Foundation, Inc. + Copyright (C) 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,7 +18,7 @@ #include <paths.h> #include <nscd/nscd.h> - +#include <string.h> static union { |