diff options
author | Jeremy Allison <jra@samba.org> | 1997-09-19 17:12:08 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1997-09-19 17:12:08 +0000 |
commit | a2d2206cc941f39df8713d9cee26099f603af82f (patch) | |
tree | d438f8496920c07242d3c839767711c0a1e8d58c /source3/script | |
parent | 1aa8036b451412c00503a791ae6e0600491b2ca0 (diff) | |
download | samba-a2d2206cc941f39df8713d9cee26099f603af82f.tar.gz samba-a2d2206cc941f39df8713d9cee26099f603af82f.tar.bz2 samba-a2d2206cc941f39df8713d9cee26099f603af82f.zip |
Makefile: Changed proto: target to not include c files not used currently.
Caused proto.h to be from a sorted list of C files.
arcfour.h: Added prototypes.
client.c: Added username%password in environment patch from John Blair <jdblair@frodo.tucc.uab.edu>
loadparm.c: Added username manipulation code from Peter McCool [SMTP:peter@qimr.edu.au]
username.c: Added username manipulation code from Peter McCool [SMTP:peter@qimr.edu.au]
mkproto.awk: Added arc4_key type.
proto.h: Updated & sorted.
Jeremy (jallison@whistle.com)
(This used to be commit 97ed4fea67095dfb83227e7b5fffc236ff277e02)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index f2b76f20c9..1ccf2fb2b0 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -64,7 +64,7 @@ BEGIN { next; } -!/^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types/ { +!/^unsigned|^mode_t|^DIR|^user|^int|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types|arc4_key/ { next; } |