1
1

* samba/lib/username.c (map_username): Comment out.

(user_in_list): Ditto.
Этот коммит содержится в:
Andrew V. Samoilov 2005-02-01 12:02:34 +00:00
родитель 3973e33cc2
Коммит a7a42c3d8b
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2005-02-01 Andrew V. Samoilov <sav@bcs.zp.ua>
* samba/lib/username.c (map_username): Comment out.
(user_in_list): Ditto.
2005-01-27 Roland Illig <roland.illig@gmx.de>
* cpio.c (cpio_read_crc_head): Fixed device number handling for

Просмотреть файл

@ -40,6 +40,7 @@ char *get_home_dir(char *user)
}
#if 0 /* Fix possible buffer overflow in sscanf(unixname,"%s",user) if uncomment */
/*******************************************************************
map a username from a dos name to a unix name by looking in the username
map. Note that this modifies the name in place.
@ -142,6 +143,7 @@ BOOL map_username(char *user)
return mapped_user;
}
#endif /* 0 */
/****************************************************************************
Get_Pwnam wrapper
@ -226,6 +228,7 @@ struct passwd *Get_Pwnam(char *user,BOOL allow_change)
return(NULL);
}
#if 0
/****************************************************************************
check if a user is in a netgroup user list
****************************************************************************/
@ -366,6 +369,7 @@ BOOL user_in_list(char *user,char *list)
}
return(False);
}
#endif /* 0 */
/* The functions below have been taken from password.c and slightly modified */
/****************************************************************************