Deleted Added
full compact
xcrypt.c (181111) xcrypt.c (192595)
1/*
2 * Copyright (c) 2003 Ben Lindstrom. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 14 unchanged lines hidden (view full) ---

23 */
24
25#include "includes.h"
26
27#include <sys/types.h>
28#include <unistd.h>
29#include <pwd.h>
30
1/*
2 * Copyright (c) 2003 Ben Lindstrom. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 14 unchanged lines hidden (view full) ---

23 */
24
25#include "includes.h"
26
27#include <sys/types.h>
28#include <unistd.h>
29#include <pwd.h>
30
31# ifdef HAVE_CRYPT_H
31# if defined(HAVE_CRYPT_H) && !defined(HAVE_SECUREWARE)
32# include <crypt.h>
33# endif
34
35# ifdef __hpux
36# include <hpsecurity.h>
37# include <prot.h>
38# endif
39

--- 78 unchanged lines hidden ---
32# include <crypt.h>
33# endif
34
35# ifdef __hpux
36# include <hpsecurity.h>
37# include <prot.h>
38# endif
39

--- 78 unchanged lines hidden ---