~ubuntu-branches/ubuntu/trusty/ifmail/trusty

« back to all changes in this revision

Viewing changes to ifcico/nlookup.c

  • Committer: Package Import Robot
  • Author(s): Marco d'Itri
  • Date: 2012-05-14 05:17:39 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120514051739-86alcr4jvx2ses6v
Tags: 2.14tx8.10-21
* Do not use perl4 modules. (Closes: #659423)
* Added support for dpkg-buildflags and hardening.
* Package converted to source format 3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
                        addr.net = strtol( p, &p, 10 );
76
76
                        if ( *p++ != '/' ) {
77
77
                          Syntax:
78
 
                                printf( Address );
 
78
                                printf( "%s", Address );
79
79
                                return;
80
80
                        }
81
81
                  ParseNodeAndPoint:
223
223
                                                firstFlag = 0;
224
224
                                        else
225
225
                                                printf( ", " );
226
 
                                        printf( p );
 
226
                                        printf( "%s", p );
227
227
                                }
228
228
                        if ( nlent->flags & RQMODE ) {
229
229
                                switch ( nlent->flags & RQMODE ) {
251
251
                                        firstFlag = 0;
252
252
                                else
253
253
                                        printf( ", " );
254
 
                                printf( p );
 
254
                                printf( "%s", p );
255
255
                        }
256
256
                        {
257
257
                                int i;
260
260
                                                firstFlag = 0;
261
261
                                        else
262
262
                                                printf( ", " );
263
 
                                        printf( nlent->uflags[ i ] );
 
263
                                        printf( "%s", nlent->uflags[ i ] );
264
264
                                }
265
265
                        }
266
266
                        putchar( '\n' );