diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-17 22:56:13 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-17 22:56:13 +0000 |
commit | ad0d6509a761154c113e040a82ad78e72a3ccf30 (patch) | |
tree | 13f4b6188945bfd1ada57e76c612f45a21bce5e2 /source3/smbd/chgpasswd.c | |
parent | f06d1b240a0cc15bc50c907198c06fcd826d63b2 (diff) | |
download | samba-ad0d6509a761154c113e040a82ad78e72a3ccf30.tar.gz samba-ad0d6509a761154c113e040a82ad78e72a3ccf30.tar.xz samba-ad0d6509a761154c113e040a82ad78e72a3ccf30.zip |
Merge from HEAD:
- Make ReadDirName return a const char*.
- Consequential changes from that
- mark our fstring/pstring assumptions in function prototypes
Andrew Bartlett
(This used to be commit 10b53d7c6fd77f23433dd2ef12bb14b227147a48)
Diffstat (limited to 'source3/smbd/chgpasswd.c')
-rw-r--r-- | source3/smbd/chgpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index 401ab131adb..31c4fa7cc9b 100644 --- a/source3/smbd/chgpasswd.c +++ b/source3/smbd/chgpasswd.c @@ -64,7 +64,7 @@ static int findpty(char **slave) int master; static fstring line; DIR *dirp; - char *dpname; + const char *dpname; #if defined(HAVE_GRANTPT) /* Try to open /dev/ptmx. If that fails, fall through to old method. */ |