summaryrefslogtreecommitdiff
path: root/helper-utilities
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-08-04 17:40:05 +0000
committerDarin Adler <darin@src.gnome.org>2000-08-04 17:40:05 +0000
commit586d217cf5231c0bf85daaeddf2a68a4b491c773 (patch)
tree6841c658a2a140c01bb900675026d2f64c927a3c /helper-utilities
parent44bea76667ec9011145757f76ad7133c68bd6229 (diff)
downloadnautilus-586d217cf5231c0bf85daaeddf2a68a4b491c773.tar.gz
Added a declaration to work around a bug or version issue that some
* components/html/glibwww-init.c: Added a declaration to work around a bug or version issue that some Solaris hackers ran into with glibwww. * components/mozilla/main.c: (mozilla_check_environment): Fixed a bug where we g_free the result of g_getenv. * helper-utilities/authenticate/nautilus-authenticate-pam.c: Changed includes so this builds for some Solaris versions (doesn't seem to create any problem compiling elsewhere). * libnautilus-extensions/nautilus-list.c: (nautilus_list_clear_from_row): Got rid of an overzealous assert that wasn't doing us any good. * src/nautilus-first-time-druid.c: (set_up_user_level_page): Fixed a broken assert.
Diffstat (limited to 'helper-utilities')
-rw-r--r--helper-utilities/authenticate/nautilus-authenticate-pam.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/helper-utilities/authenticate/nautilus-authenticate-pam.c b/helper-utilities/authenticate/nautilus-authenticate-pam.c
index 7869fa611..88e10d3dc 100644
--- a/helper-utilities/authenticate/nautilus-authenticate-pam.c
+++ b/helper-utilities/authenticate/nautilus-authenticate-pam.c
@@ -27,7 +27,8 @@
#include "nautilus-authenticate.h"
#include <security/pam_appl.h>
-#include <security/pam_misc.h>
+#include <security/pam_modules.h>
+#include <string.h>
typedef struct _PamConvData
{