1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-05 12:22:11 +03:00

lib:replace: Fix code spelling

Best reviewed with: `git show --word-diff`.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
This commit is contained in:
Andreas Schneider
2023-04-06 16:16:19 +02:00
committed by Andreas Schneider
parent 8c32a475e4
commit f1209a7a15
4 changed files with 7 additions and 7 deletions

View File

@ -20,7 +20,7 @@
* for string length. This covers a nasty loophole. * for string length. This covers a nasty loophole.
* *
* The other functions are there to prevent NULL pointers from * The other functions are there to prevent NULL pointers from
* causing nast effects. * causing nasty effects.
* *
* More Recently: * More Recently:
* Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43 * Brandon Long <blong@fiction.net> 9/15/96 for mutt 0.43
@ -77,7 +77,7 @@
* Fix incorrect zpadlen handling in fmtfp. * Fix incorrect zpadlen handling in fmtfp.
* Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it. * Thanks to Ollie Oldham <ollie.oldham@metro-optix.com> for spotting it.
* few mods to make it easier to compile the tests. * few mods to make it easier to compile the tests.
* addedd the "Ollie" test to the floating point ones. * added the "Ollie" test to the floating point ones.
* *
* Martin Pool (mbp@samba.org) April 2003 * Martin Pool (mbp@samba.org) April 2003
* Remove NO_CONFIG_H so that the test case can be built within a source * Remove NO_CONFIG_H so that the test case can be built within a source
@ -550,7 +550,7 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in
} }
for (i = 1; i < clist[pnum].num; i++) { for (i = 1; i < clist[pnum].num; i++) {
if (clist[pnum].chunks[0]->type != clist[pnum].chunks[i]->type) { if (clist[pnum].chunks[0]->type != clist[pnum].chunks[i]->type) {
/* nooo noo no! /* nooo no no!
* all the references to a parameter * all the references to a parameter
* must be of the same type * must be of the same type
*/ */

View File

@ -287,7 +287,7 @@ strptime_internal (rp, fmt, tm, decided, era_cnt)
} }
/* Any character but `%' must be matched by the same character /* Any character but `%' must be matched by the same character
in the iput string. */ in the input string. */
if (*fmt != '%') if (*fmt != '%')
{ {
match_char (*fmt++, *rp++); match_char (*fmt++, *rp++);

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# solaris varients of getXXent_r # solaris variants of getXXent_r
conf.CHECK_C_PROTOTYPE('getpwent_r', conf.CHECK_C_PROTOTYPE('getpwent_r',
'struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)', 'struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)',
define='SOLARIS_GETPWENT_R', headers='pwd.h') define='SOLARIS_GETPWENT_R', headers='pwd.h')
@ -8,7 +8,7 @@ conf.CHECK_C_PROTOTYPE('getgrent_r',
'struct group *getgrent_r(struct group *src, char *buf, int buflen)', 'struct group *getgrent_r(struct group *src, char *buf, int buflen)',
define='SOLARIS_GETGRENT_R', headers='grp.h') define='SOLARIS_GETGRENT_R', headers='grp.h')
# the irix varients # the irix variants
conf.CHECK_C_PROTOTYPE('getpwent_r', conf.CHECK_C_PROTOTYPE('getpwent_r',
'struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)', 'struct passwd *getpwent_r(struct passwd *src, char *buf, size_t buflen)',
define='SOLARIS_GETPWENT_R', headers='pwd.h') define='SOLARIS_GETPWENT_R', headers='pwd.h')

View File

@ -42,7 +42,7 @@ static int solaris_openat(int fildes, const char *path, int oflag, mode_t mode);
#endif #endif
/************************************************************************** /**************************************************************************
Wrappers for extented attribute calls. Based on the Linux package with Wrappers for extended attribute calls. Based on the Linux package with
support for IRIX and (Net|Free)BSD also. Expand as other systems have them. support for IRIX and (Net|Free)BSD also. Expand as other systems have them.
****************************************************************************/ ****************************************************************************/