~ubuntu-branches/ubuntu/wily/libuser/wily

« back to all changes in this revision

Viewing changes to python/libusermodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Habouzit
  • Date: 2006-09-03 21:58:15 UTC
  • mto: (2.1.1 edgy) (1.1.5 upstream) (3.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20060903215815-rtvvfzhaer8ymyp4
Tags: upstream-0.54.6-2.1.dfsg.1
ImportĀ upstreamĀ versionĀ 0.54.6-2.1.dfsg.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
16
 */
17
17
 
18
 
#ident "$Id: libusermodule.c,v 1.30 2004/12/13 20:37:07 mitr Exp $"
 
18
#ident "$Id: libusermodule.c,v 1.31 2005/10/09 05:15:47 mitr Exp $"
19
19
 
20
20
#include <Python.h>
21
21
#ifdef HAVE_CONFIG_H
40
40
static PyObject *
41
41
libuser_get_user_shells(PyObject * ignored)
42
42
{
43
 
        PyObject *ret = NULL;
 
43
        PyObject *ret;
44
44
        const char *shell;
45
45
 
46
46
        (void)ignored;